Encryption using VC++ but now need to decrypt on UNIX
I have files that were encrypted using VC++ on windows with following provider and type:
CryptAcquireContext( &Provider, NULL, MS_DEF_PROV, PROV_RSA_FULL, 0 )
Now there is need to get these files to UNIX, so I was wondering if :
1. I can use java Cryptograpy API or openssl to decrypt
2. If yes, then if somebody could give me a reference.