how can encrypt string with aescrypt?

Discussion related to AES Crypt, the file encryption software for Windows, Linux, Mac, and Java.
Post Reply
wildbuzz
Posts: 1
Joined: Sat Jun 13, 2015 4:36 pm

how can encrypt string with aescrypt?

Post by wildbuzz »

hi
AEScrypt for c# developer with this code works great:

Code: Select all

SharpAESCrypt.Encrypt("Password","inputfile","outputfile");
but above code that encrypt/decrypt file. is there any way that encrypt/decrypt string with AEScrypt? for example:

Code: Select all

string text = SharpAESCrypt.Encrypt("Password","StringToBinary");
Post Reply