Skip to content

Commit d00b0a0

Browse files
overtrueStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent 2584cae commit d00b0a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Encryption/Encryptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ private function decrypt($encrypted, $appId)
261261
$ciphertext = base64_decode($encrypted, true);
262262
$iv = substr($key, 0, 16);
263263

264-
$decrypted = openssl_decrypt($ciphertext, 'aes-256-cbc', $key, OPENSSL_RAW_DATA | OPENSSL_NO_PADDING, $iv);
264+
$decrypted = openssl_decrypt($ciphertext, 'aes-256-cbc', $key, OPENSSL_RAW_DATA | OPENSSL_NO_PADDING, $iv);
265265
} catch (BaseException $e) {
266266
throw new EncryptionException($e->getMessage(), EncryptionException::ERROR_DECRYPT_AES);
267267
}

0 commit comments

Comments
 (0)