Hi,
We encrypt data using openSSL C++ API, decrypt data using java(default security package).
99.9% of the time, it works fine, but when multi-instances of apps encrypt data at same time, java fails to decrypt .
We are using version 1.1.01 (AES/CBC/PKCS5Padding)
99.9% of the time, it works fine, but when multi-instances of apps encrypt data at same time, java fails to decrypt .
We are using version 1.1.01 (AES/CBC/PKCS5Padding)
mpCtx = EVP_CIPHER_CTX_new();
EVP_CIPHER_CTX_init(mpCtx);
Thanks for helping,
Jason