public static enum AlgorithmDescriptor.AlgorithmType extends Enum<AlgorithmDescriptor.AlgorithmType>
Enum Constant and Description |
---|
BlockEncryption
Block Encryption.
|
KeyAgreement
Key Agreement.
|
KeyTransport
Key Transport.
|
Mac
Message Authentication Code (MAC).
|
MessageDigest
Message Digest.
|
Signature
Signature.
|
SymmetricKeyWrap
Symmetric Key Wrap.
|
Modifier and Type | Method and Description |
---|---|
static AlgorithmDescriptor.AlgorithmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmDescriptor.AlgorithmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmDescriptor.AlgorithmType BlockEncryption
public static final AlgorithmDescriptor.AlgorithmType Mac
public static final AlgorithmDescriptor.AlgorithmType MessageDigest
public static final AlgorithmDescriptor.AlgorithmType KeyAgreement
public static final AlgorithmDescriptor.AlgorithmType KeyTransport
public static final AlgorithmDescriptor.AlgorithmType Signature
public static final AlgorithmDescriptor.AlgorithmType SymmetricKeyWrap
public static AlgorithmDescriptor.AlgorithmType[] values()
for (AlgorithmDescriptor.AlgorithmType c : AlgorithmDescriptor.AlgorithmType.values()) System.out.println(c);
public static AlgorithmDescriptor.AlgorithmType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 1999–2020 Shibboleth Consortium. All rights reserved.