Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mcrypt の使用を openssl に変換したいと考えています。
暗号化関数は次のとおりです。
mcrypt_ecb(MCRYPT_3DES,$key,$payload,MCRYPT_ENCRYPT)
復号化関数は次のとおりです。
mcrypt_ecb(MCRYPT_3DES,$key,$payload,MCRYPT_DECRYPT)
上記の openssl_* に相当するものは何ですか?
ありがとう。