com.dahuatech.hutool.crypto.asymmetric.AsymmetricAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.hutool.crypto.asymmetric;
/**
* 非对称算法类型
* see:
* https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#KeyPairGenerator
*
* @author Looly
*/
public enum AsymmetricAlgorithm {
/** RSA算法 */
RSA("RSA"),
/** RSA算法,此算法用了默认补位方式为RSA/ECB/PKCS1Padding */
RSA_ECB_PKCS1("RSA/ECB/PKCS1Padding"),
/** RSA算法,此算法用了RSA/None/NoPadding */
RSA_None("RSA/None/NoPadding"),
/** EC(Elliptic Curve)算法 */
EC("EC");
private String value;
/**
* 构造
*
* @param value 算法字符表示,区分大小写
*/
AsymmetricAlgorithm(String value) {
this.value = value;
}
/**
* 获取算法字符串表示,区分大小写
*
* @return 算法字符串表示
*/
public String getValue() {
return this.value;
}
}