summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authordoufenghu <[email protected]>2024-08-27 19:09:43 +0800
committerdoufenghu <[email protected]>2024-08-27 19:09:43 +0800
commit2e21d795d80f83b1f402eea98ed0b4835f15abb9 (patch)
tree60fa267716fbacacba81317a0c7371513d9e76bf /pom.xml
parent7e268f460a683987d940c78d70fcb6d633a576ba (diff)
[feature][bootstrap]Add the SM4 algorithm for encrypting sensitive configuration data
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 53bcf1f..73d45b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,6 +55,7 @@
<jsonpath.version>2.4.0</jsonpath.version>
<fastjson2.version>2.0.32</fastjson2.version>
<hutool.version>5.8.22</hutool.version>
+ <bouncycastle.version>1.78.1</bouncycastle.version>
<galaxy.version>2.0.2</galaxy.version>
<guava-retrying.version>2.0.0</guava-retrying.version>
<ipaddress.version>5.3.3</ipaddress.version>
@@ -392,6 +393,12 @@
</dependency>
<dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk18on</artifactId>
+ <version>${bouncycastle.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>com.github.seancfoley</groupId>
<artifactId>ipaddress</artifactId>
<version>${ipaddress.version}</version>