Mcrypt에서 OpenSSL로 암호화 라이브러리 업그레이드
암호화 라이브러리를 Mcrypt에서 OpenSSL로 업그레이드할 수 있나요? OpenSSL에서는 Mcrypt로 암호화된 데이터를 해독할 수 있습니까? 두 개의 서로 다른 게시물이 충돌하는 정보를 제공합니다.
질문: 내 암호화 라이브러리를 Mcrypt에서 OpenSSL로 업그레이드할 수 있습니까? 그렇다면 어떻게 해야 합니까?
답변: 예, 암호화 라이브러리를 Mcrypt에서 OpenSSL로 업그레이드할 수 있습니다.
질문: 업그레이드할 수 있습니까? 다음을 사용하여 Mcrypt로 암호화된 데이터를 해독합니다. OpenSSL?
답변: 예, OpenSSL을 사용하여 Mcrypt로 암호화된 데이터를 해독하는 것이 가능합니다.
다음은 데이터를 해독하는 방법에 대한 코드 예입니다. 다음을 사용하여 Mcrypt로 암호화됨 OpenSSL:
public function decrypt($data, $key) { $salt = substr($data, 0, 128); $enc = substr($data, 128, -64); $mac = substr($data, -64); list ($cipherKey, $macKey, $iv) = $this->getKeys($salt, $key); if ($mac !== hash_hmac('sha512', $enc, $macKey, true)) { return false; } $dec = openssl_decrypt($enc, $this->cipher, $cipherKey, OPENSSL_RAW_DATA, $iv); return $dec; }
추가 참고 사항:
테스트:
다음 코드는 decrypt() 함수를 테스트하는 데 사용됩니다:
$keys = [ 'this is a secret key.', 'G906m70p(IhzA5T&5x7(w0%a631)u)%D6E79cIYJQ!iP2U(xT13q6)tJ6gZ3D2wi&0")7cP5', chr(6) . chr(200) . chr(16) . 'my key ' . chr(3) . chr(4) . chr(192) . chr(254) . ' zyx0987!!', 'and finally one more key to test with here:', ]; $data = [ 'A', 'This is a test', 'now test encrypting something a little bit longer with 1234567890.', '$length = mcrypt_get_block_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CBC); $last = ord($data[strlen($data) - 1]);', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit amet pharetra urna. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut fringilla, quam sed eleifend eleifend, justo turpis consectetur tellus, quis tristique eros erat at nibh. Nunc dictum neque vel diam molestie fermentum. Pellentesque dignissim dui quis tortor eleifend, ut maximus elit egestas. Donec posuere odio et auctor porta. Quisque placerat condimentum maximus. Curabitur luctus dolor eget sem luctus, in dignissim tortor venenatis. Mauris eget nulla nisl.', ]; $failures = 0; foreach ($data as $datum) { foreach ($keys as $key) { $enc = new Encryption(MCRYPT_BLOWFISH, MCRYPT_MODE_CBC); $encrypted = $enc->encrypt($datum, $key); $dec = new EncryptionOpenSsl('bf-cbc'); $decrypted = $dec->decrypt($encrypted, $key); if (strcmp($datum, $decrypted) !== 0) { echo "Encryption with key '$key' of '$datum' failed. '$decrypted' != '$datum'<br><br>\n\n"; $failures++; } } } if ($failures) { echo "$failures tests failed.<br>\n"; } else { echo "ALL OKAY<br>\n"; }
위 내용은 내 암호화를 Mcrypt에서 OpenSSL로 마이그레이션하고 OpenSSL을 사용하여 Mcrypt로 암호화된 데이터를 해독할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!