We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9442fd commit 44cdc4aCopy full SHA for 44cdc4a
1 file changed
src/Utils.php
@@ -86,7 +86,7 @@ public static function encrypt($plainText, $cipherKey) {
86
if ($encrypted = openssl_encrypt($plainText, ALGORITHM, $cipherKey, true, $iv)) {
87
return bin2hex($iv) . bin2hex($encrypted);
88
} else {
89
- Logger::debug("Decrypt error", openssl_error_string());
+ Logger::debug("Encrypt error", openssl_error_string());
90
return "";
91
}
92
0 commit comments