All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.hutool.crypto.asymmetric.SignAlgorithm Maven / Gradle / Ivy

There is a newer version: 6.0.0.M3
Show newest version
/*
 * Copyright (c) 2013-2024 Hutool Team and hutool.cn
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.dromara.hutool.crypto.asymmetric;

/**
 * 签名算法类型
* see: https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#Signature * * @author Looly */ public enum SignAlgorithm { // The RSA signature algorithm NONEwithRSA("NONEwithRSA"), // The MD2/MD5 with RSA Encryption signature algorithm MD2withRSA("MD2withRSA"), MD5withRSA("MD5withRSA"), // The signature algorithm with SHA-* and the RSA SHA1withRSA("SHA1withRSA"), SHA256withRSA("SHA256withRSA"), SHA384withRSA("SHA384withRSA"), SHA512withRSA("SHA512withRSA"), // The Digital Signature Algorithm NONEwithDSA("NONEwithDSA"), // The DSA with SHA-1 signature algorithm SHA1withDSA("SHA1withDSA"), // The ECDSA signature algorithms NONEwithECDSA("NONEwithECDSA"), SHA1withECDSA("SHA1withECDSA"), SHA256withECDSA("SHA256withECDSA"), SHA384withECDSA("SHA384withECDSA"), SHA512withECDSA("SHA512withECDSA"), // 需要BC库加入支持 SHA256withRSA_PSS("SHA256WithRSA/PSS"), SHA384withRSA_PSS("SHA384WithRSA/PSS"), SHA512withRSA_PSS("SHA512WithRSA/PSS"); private final String value; /** * 构造 * * @param value 算法字符表示,区分大小写 */ SignAlgorithm(final String value) { this.value = value; } /** * 获取算法字符串表示,区分大小写 * * @return 算法字符串表示 */ public String getValue() { return this.value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy