mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
It fixes bug #71917 (openssl_open() returns junk on envelope < 16 bytes) and bug #72362 (OpenSSL Blowfish encryption is incorrect for short keys).
14 lines
551 B
PHP
14 lines
551 B
PHP
--TEST--
|
|
Bug #72362: OpenSSL Blowfish encryption is incorrect for short keys
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("openssl")) die("skip openssl not loaded");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(bin2hex(openssl_encrypt("this is a test string","bf-ecb","12345678", OPENSSL_RAW_DATA | OPENSSL_DONT_ZERO_PAD_KEY)));
|
|
var_dump(bin2hex(openssl_encrypt("this is a test string","bf-ecb","1234567812345678" , OPENSSL_RAW_DATA)));
|
|
?>
|
|
--EXPECT--
|
|
string(48) "e3214d1b16e574828c8a3e222202dde81afd1ad2cb165ab3"
|
|
string(48) "e3214d1b16e574828c8a3e222202dde81afd1ad2cb165ab3"
|