소스 검색

Make AesByesEncryptor public

Fixes: gh-5099
Krzysztof Szmytkowski 6 년 전
부모
커밋
b5455b0bec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      crypto/src/main/java/org/springframework/security/crypto/encrypt/AesBytesEncryptor.java

+ 1 - 1
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;