We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901fed1 commit 1aab90aCopy full SHA for 1aab90a
springboot-starter/src/main/java/com/codingapi/springboot/framework/crypto/AESUtils.java
@@ -1,11 +1,14 @@
1
package com.codingapi.springboot.framework.crypto;
2
3
+import org.bouncycastle.jce.provider.BouncyCastleProvider;
4
+
5
import java.io.IOException;
6
+import java.security.Security;
7
8
public class AESUtils {
9
10
private AESUtils() {
-
11
+ Security.addProvider(new BouncyCastleProvider());
12
}
13
14
private final static AESUtils instance = new AESUtils();
0 commit comments