public enum RSACipherPaddings extends Enum<RSACipherPaddings>
org.bouncycastle.jcajce.provider.asymmetric.rsa.CipherSpi| 限定符和类型 | 方法和说明 |
|---|---|
String |
transform() |
static RSACipherPaddings |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RSACipherPaddings[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RSACipherPaddings ECB_NOPADDING
public static final RSACipherPaddings ECB_PKCS1PADDING
public static final RSACipherPaddings ECB_ISO9796_1PADDING
public static final RSACipherPaddings ECB_OAEPWITHMD5ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPPADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA1ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA224ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA256ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA384ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA512ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA3_224ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA3_256ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA3_384ANDMGF1PADDING
public static final RSACipherPaddings ECB_OAEPWITHSHA3_512ANDMGF1PADDING
public static final RSACipherPaddings NONE_NOPADDING
public static final RSACipherPaddings NONE_PKCS1PADDING
public static final RSACipherPaddings NONE_ISO9796_1PADDING
public static final RSACipherPaddings NONE_OAEPWITHMD5ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPPADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA1ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA224ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA256ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA384ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA512ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA3_224ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA3_256ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA3_384ANDMGF1PADDING
public static final RSACipherPaddings NONE_OAEPWITHSHA3_512ANDMGF1PADDING
public static final RSACipherPaddings ECB_SSLV23
public static final RSACipherPaddings NONE_SSLV23
public static RSACipherPaddings[] values()
for (RSACipherPaddings c : RSACipherPaddings.values()) System.out.println(c);
public static RSACipherPaddings valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String transform()
Copyright © 2023. All rights reserved.