mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
fix comment
This commit is contained in:
parent
23e21f8f9f
commit
f1abd98b62
@ -3,23 +3,23 @@ package cn.hutool.crypto.symmetric;
|
||||
/**
|
||||
* 对称算法类型<br>
|
||||
* see: https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#KeyGenerator
|
||||
*
|
||||
*
|
||||
* @author Looly
|
||||
*
|
||||
*/
|
||||
public enum SymmetricAlgorithm {
|
||||
/** 默认的AES加密方式:AES/ECB/PKCS5Padding */
|
||||
AES("AES"),
|
||||
ARCFOUR("ARCFOUR"),
|
||||
Blowfish("Blowfish"),
|
||||
AES("AES"),
|
||||
ARCFOUR("ARCFOUR"),
|
||||
Blowfish("Blowfish"),
|
||||
/** 默认的DES加密方式:DES/ECB/PKCS5Padding */
|
||||
DES("DES"),
|
||||
/** 3DES算法,默认实现为:DESede/CBC/PKCS5Padding */
|
||||
DESede("DESede"),
|
||||
DES("DES"),
|
||||
/** 3DES算法,默认实现为:DESede/ECB/PKCS5Padding */
|
||||
DESede("DESede"),
|
||||
RC2("RC2"),
|
||||
|
||||
PBEWithMD5AndDES("PBEWithMD5AndDES"),
|
||||
PBEWithSHA1AndDESede("PBEWithSHA1AndDESede"),
|
||||
PBEWithMD5AndDES("PBEWithMD5AndDES"),
|
||||
PBEWithSHA1AndDESede("PBEWithSHA1AndDESede"),
|
||||
PBEWithSHA1AndRC2_40("PBEWithSHA1AndRC2_40");
|
||||
|
||||
private final String value;
|
||||
@ -39,4 +39,4 @@ public enum SymmetricAlgorithm {
|
||||
public String getValue() {
|
||||
return this.value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user