I need a way to encrypt and decrypt with 3des. I'm currently using php 7.1
I found this question, but mcrypt is deprecated as of php 7.1 and I can't find any other resource for this.
I need a way to encrypt and decrypt with 3des. I'm currently using php 7.1
I found this question, but mcrypt is deprecated as of php 7.1 and I can't find any other resource for this.
Continue to the Comments section of the function's manual and you'll see the following:
So, Consider using
openssl_encrypt()
& openssl_decrypt() instead. They are still being supported and better performing.