We would like to convert our use of mcrypt to openssl.
Here is our encryption function:
mcrypt_ecb(MCRYPT_3DES,$key,$payload,MCRYPT_ENCRYPT)
Here is our decryption function:
mcrypt_ecb(MCRYPT_3DES,$key,$payload,MCRYPT_DECRYPT)
What are the equivalents of openssl_ * from the above?
Thanks.
php openssl mcrypt 3des
anonymous-one
source share