Page 1 of 1

Example of encrypt and decrypt

Posted: Mon Aug 31, 2009 1:47 pm
by titobal
Hi,

Anybody can show how to use encrypt and decrypt commands

for encrypting / decrypting a text (not a file, a text, a label ...)

Many thanks.

Posted: Tue Sep 01, 2009 8:49 am
by Mark
Dear titobal,

Code: Select all

get "bla"
encrypt it using "blowfish" with "1234567"
put it
Best regards,

Mark

Hi Mark, thanks for the hekp... however I have a question...

Posted: Tue Sep 01, 2009 3:02 pm
by titobal
During the encryption / decryption process can we in revolution use a key file instead of a simple password ? and a keyfile + a password ?

I would like to use the key file + password as the executable generate gets disassembled the password can be accessible, but the keyfile can be put in a distant network location for example...

Any idea on how to implement that encryption scheme ... ?

Thanks for your answer.

Posted: Tue Sep 01, 2009 3:24 pm
by Mark
Dear titobal,

You can use anything you like as an encryption key.

Code: Select all

put url "http://www.domain.com/key.txt" into myKey
encrypt it using "blowfish" with myKey

Code: Select all

put url "binfile:~/folder/key.txt" into myKey
encrypt it using "blowfish" with myKey
etc.

Have you read the documentation about the encrypt and decrypt commands and the cyphers function?

Best,

Mark