From 0a173490c5348ffd045482fc5f29a3b49d3cf325 Mon Sep 17 00:00:00 2001 From: Hans Nilsson Date: Mon, 3 Sep 2018 10:24:51 +0200 Subject: crypto: Bug fix - blowfish_cbc allowed in crypto:next_iv --- lib/crypto/src/crypto.erl | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/crypto/src/crypto.erl b/lib/crypto/src/crypto.erl index a9d933f5d7..3c3e9a7f34 100644 --- a/lib/crypto/src/crypto.erl +++ b/lib/crypto/src/crypto.erl @@ -298,6 +298,7 @@ next_iv(Type, Data) when is_binary(Data) -> IVecSize = case Type of des_cbc -> 8; des3_cbc -> 8; + blowfish_cbc -> 8; aes_cbc -> 16; aes_ige -> 32 end, -- cgit v1.2.3 From 5107b29a1bca592c0ea3840d263d0dd1f48e2ed3 Mon Sep 17 00:00:00 2001 From: Hans Nilsson Date: Wed, 22 Aug 2018 18:59:14 +0200 Subject: crypto: Bug fix - crypto:next_iv regarding aes_ige256 --- lib/crypto/src/crypto.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/crypto/src/crypto.erl b/lib/crypto/src/crypto.erl index 3c3e9a7f34..17351d10ea 100644 --- a/lib/crypto/src/crypto.erl +++ b/lib/crypto/src/crypto.erl @@ -300,7 +300,8 @@ next_iv(Type, Data) when is_binary(Data) -> des3_cbc -> 8; blowfish_cbc -> 8; aes_cbc -> 16; - aes_ige -> 32 + aes_ige -> 32; % For compatibility if someone has bug-adapted code + aes_ige256 -> 32 % The name used in block_encrypt et al end, {_, IVec} = split_binary(Data, size(Data) - IVecSize), IVec; -- cgit v1.2.3