From b5455b0becc0f49934fa90ed54085c01e5d2031f Mon Sep 17 00:00:00 2001 From: Krzysztof Szmytkowski Date: Tue, 13 Nov 2018 17:25:47 +0100 Subject: [PATCH] Make AesByesEncryptor public Fixes: gh-5099 --- .../security/crypto/encrypt/AesBytesEncryptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/src/main/java/org/springframework/security/crypto/encrypt/AesBytesEncryptor.java b/crypto/src/main/java/org/springframework/security/crypto/encrypt/AesBytesEncryptor.java index 4b0e0bd861..1d4ce95b7b 100644 --- a/crypto/src/main/java/org/springframework/security/crypto/encrypt/AesBytesEncryptor.java +++ b/crypto/src/main/java/org/springframework/security/crypto/encrypt/AesBytesEncryptor.java @@ -41,7 +41,7 @@ import org.springframework.security.crypto.keygen.KeyGenerators; * @author Keith Donald * @author Dave Syer */ -final class AesBytesEncryptor implements BytesEncryptor { +public final class AesBytesEncryptor implements BytesEncryptor { private final SecretKey secretKey;