我看了这个问题,并想自己做。当我运行此代码时(直接从此答案中获取):
$textToEncrypt = "My super secret information.";
$encryptionMethod = "AES-256-CBC"; // AES is used by the U.S. gov't to encrypt top secret documents.
$secretHash = "25c6c7ff35b9979b151f2136cd13b0ff";
//To encrypt
$encryptedMessage = openssl_encrypt($textToEncrypt, $encryptionMethod, $secretHash, '1234567812345678');
//To Decrypt
$decryptedMessage = openssl_decrypt($encryptedMessage, $encryptionMethod, $secretHash);
//Result
echo "Encrypted: $encryptedMessage <br>Decrypted: $decryptedMessage";
但是我得到警告
openssl_encrypt(): Using an empty Initialization Vector (iv) is potentially insecure and not recommended
因此,我去看了看文档,但是“没有文档”。我发现了此评论,但仍然没有提及初始化向量是什么以及如何使用它。谁能启发我?
我知道我可以做更多的Google搜索工作,但是Stackoverflow在众多搜索结果中排在首位,我认为这个问题对其他遇到此问题的人可能很有用。