-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add utility classes for Base64 and DigestUtils
新增了基于commons-codec的Base64和DigestUtils工具类,同时更新了相关依赖配置以支持其功能。
- Loading branch information
1 parent
bfcdd5d
commit b36e325
Showing
4 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
radp-components/radp-commons/src/main/java/space/x9x/radp/commons/codec/binary/Base64.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package space.x9x.radp.commons.codec.binary; | ||
|
||
import lombok.experimental.UtilityClass; | ||
|
||
/** | ||
* @author x9x | ||
* @since 2024-12-27 16:25 | ||
*/ | ||
@UtilityClass | ||
public class Base64 extends org.apache.commons.codec.binary.Base64 { | ||
} |
11 changes: 11 additions & 0 deletions
11
...omponents/radp-commons/src/main/java/space/x9x/radp/commons/codec/digest/DigestUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package space.x9x.radp.commons.codec.digest; | ||
|
||
import lombok.experimental.UtilityClass; | ||
|
||
/** | ||
* @author x9x | ||
* @since 2024-12-27 16:31 | ||
*/ | ||
@UtilityClass | ||
public class DigestUtils extends org.apache.commons.codec.digest.DigestUtils { | ||
} |