public enum EncType extends java.lang.Enum<EncType>
列挙型定数 | 説明 |
---|---|
EC_P256 |
Pubkey 64 bytes; privkey 32 bytes;
|
EC_P384 |
Pubkey 96 bytes; privkey 48 bytes;
|
EC_P521 |
Pubkey 132 bytes; privkey 66 bytes;
|
ELGAMAL_2048 |
2048-bit MODP Group from RFC 3526.
|
修飾子とタイプ | メソッド | 説明 |
---|---|---|
java.lang.String |
getAlgorithmName() |
the standard name used for the Java crypto factories
|
EncAlgo |
getBaseAlgorithm() |
the standard base algorithm name used for the Java crypto factories
|
static EncType |
getByCode(int code) |
|
int |
getCode() |
the unique identifier for this type
|
java.security.spec.AlgorithmParameterSpec |
getParams() |
The elliptic curve ECParameterSpec for ECDSA; DSAParameterSpec for DSA
|
int |
getPrivkeyLen() |
the length of the private key, in bytes
|
int |
getPubkeyLen() |
the length of the public key, in bytes
|
java.lang.String |
getSupportedSince() |
The router version in which this type was first supported.
|
boolean |
isAvailable() |
|
static boolean |
isAvailable(int code) |
|
static boolean |
isAvailable(java.lang.String stype) |
|
static EncType |
parseEncType(java.lang.String stype) |
Convenience for user apps
|
static EncType |
valueOf(java.lang.String name) |
指定した名前を持つこの型の列挙型定数を返します。
文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に
一致している必要があります。(余分な空白文字を含めることは
できません。)
|
static EncType[] |
values() |
この列挙型の定数を含む配列を宣言されている順序で返します。
このメソッドは次のようにして定数を反復するために
使用できます:
for (EncType c : EncType.values()) System.out.println(c); |
public static final EncType ELGAMAL_2048
public static final EncType EC_P256
public static final EncType EC_P384
public static final EncType EC_P521
public static EncType[] values()
for (EncType c : EncType.values()) System.out.println(c);
public static EncType valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合public int getCode()
public int getPubkeyLen()
public int getPrivkeyLen()
public EncAlgo getBaseAlgorithm()
public java.lang.String getAlgorithmName()
public java.security.spec.AlgorithmParameterSpec getParams() throws java.security.spec.InvalidParameterSpecException
java.security.spec.InvalidParameterSpecException
- if the algorithm is not available on this JVM.public java.lang.String getSupportedSince()
public boolean isAvailable()
public static boolean isAvailable(int code)
public static boolean isAvailable(java.lang.String stype)
stype
- number or namepublic static EncType getByCode(int code)
public static EncType parseEncType(java.lang.String stype)
stype
- number or name