Search found 6 matches

by rla
Fri Oct 30, 2015 3:50 am
Forum: AES Crypt
Topic: Multithreading encrypt file - windows
Replies: 0
Views: 24310

Multithreading encrypt file - windows

Hi, I build a java multithreading program using JNI to load our native library built in C. In native library, the process encrypt file using AES v 3.09. After several thread execution, the program hang up during CryptAcquireContext, no return error, just stuck. Is there any constraint/limitation for...
by rla
Fri Feb 06, 2015 8:21 am
Forum: AES Crypt
Topic: Implementation aescrypt on multiplatform
Replies: 8
Views: 8979

Re: Implementation aescrypt on multiplatform

ya, file not corrupted. i try encrypt from windows and decrypt it on linux and vice versa. btw thanks for your help, i already implement aescrypt on my c project. i try some library to encrypt/decrypt file, but aescrypt faster than other lib for large file.
by rla
Tue Feb 03, 2015 9:31 am
Forum: AES Crypt
Topic: Implementation aescrypt on multiplatform
Replies: 8
Views: 8979

Re: Implementation aescrypt on multiplatform

Thank you, i use wchar to store my password on windows, and on linux i use char to store my password and add 0x00 after each character, it work. no error show up and the file not corrupt. But i want to ask about wchar_t, the file can be encrypt/decrypt when i put 14 password length on windows and i ...
by rla
Mon Feb 02, 2015 9:19 am
Forum: AES Crypt
Topic: Implementation aescrypt on multiplatform
Replies: 8
Views: 8979

Re: Implementation aescrypt on multiplatform

Sorry my fault, my password ASCII. hmm i'm new about encoding utf-8 utf-16. I read your code there a function passwd_to_utf16() on linux source code. My password_generator just manipulation string, on linux i use char to store my password and use passwd_to_utf16() the result i save in unsigned char....
by rla
Wed Jan 28, 2015 10:41 am
Forum: AES Crypt
Topic: Implementation aescrypt on multiplatform
Replies: 8
Views: 8979

Re: Implementation aescrypt on multiplatform

Yes, the password is non ASCII, I create a function to call function encrypt decrypt in aescrypt.c, and for the password i create function to generate it. Example "e290euowrhinjf". I'm using this OS : Linux Version = CentOS release 6.4 (Final) x86_64. Windows = Windows 7 Proffesional 32 bi...
by rla
Tue Jan 27, 2015 8:40 am
Forum: AES Crypt
Topic: Implementation aescrypt on multiplatform
Replies: 8
Views: 8979

Implementation aescrypt on multiplatform

I'm using aescrypt for encrypt decrypt file in windows and linux. I try encrypt file in windows and decrypt it in linux platform and the other way round, but always got error "Error: Message has been altered or password is incorrect". i'm sure my password is correct. I use code aescrypt wi...