Search found 5 matches

by Atton
Fri Mar 06, 2015 9:42 am
Forum: AES Crypt
Topic: AES String System
Replies: 7
Views: 16325

Re: AES String System

paulej wrote:They're defined is the AESStringCrypt.c file. How would you know they don't exist if they didn't exist?
I see I should say used different language, I see where they are now.
Thank for your help.
by Atton
Fri Mar 06, 2015 5:48 am
Forum: AES Crypt
Topic: AES String System
Replies: 7
Views: 16325

Re: AES String System

unsigned long long AESStringCrypt( char *password, unsigned long password_length, char *plaintext, unsigned long long plaintext_length, char *ciphertext); unsigned long long AESStringDecrypt(char *password, unsigned long password_length, char *ciphertext, unsigned long long ciphertext_length, char ...
by Atton
Tue Mar 03, 2015 9:47 am
Forum: AES Crypt
Topic: AES String System
Replies: 7
Views: 16325

Re: AES String System

Thanks I'll give that bugger a go.
by Atton
Mon Mar 02, 2015 5:41 am
Forum: AES Crypt
Topic: AES String System
Replies: 7
Views: 16325

Re: AES String System

Funny I can't seem to find anything related to string encryption or char array encryption, connected to the C code.
by Atton
Mon Mar 02, 2015 12:57 am
Forum: AES Crypt
Topic: AES String System
Replies: 7
Views: 16325

AES String System

I have what I would be a rather simple question, how would one encrypt and decrypt strings with the AES implementation used in AES Crypt. How could this be done and would it also accept a string as a key.