kisa seed_cbc undefined 변수 수정

SEED_CBC_Decrypt 함수
return null 전에 초기화
This commit is contained in:
kit rio
2024-04-11 17:46:58 +09:00
parent b52a1f4da4
commit b3ea5f19a8

View File

@ -782,6 +782,7 @@ class KISA_SEED_CBC {
$pbszCipherText = array_pad(array(), $message_length, 0);
Common::arraycopy_system($message, $message_offset, $pbszCipherText, 0, $message_length);
$nCipherTextLen = count($pbszCipherText);
$result = null;
if ($nCipherTextLen % KISA_SEED_CBC::BLOCK_SIZE_SEED) {
return $result;