static SignatureAlgorithm |
SignatureAlgorithm.forJAVA(String javaName) |
For given signature algorithm and digest algorithm this function returns the Java form of the signature algorithm
Signature Algorithms
The algorithm names in this section can be specified when generating an instance of Signature.
|
static SignatureAlgorithm |
SignatureAlgorithm.forJWA(String jsonWebAlgorithm) |
Returns a corresponding SignatureAlgorithm by the JWA name
|
static SignatureAlgorithm |
SignatureAlgorithm.forJWA(String jsonWebAlgorithm,
SignatureAlgorithm defaultValue) |
This method return the SignatureAlgorithm or the default value if the algorithm is unknown.
|
static SignatureAlgorithm |
SignatureAlgorithm.forOID(String oid) |
Returns a corresponding SignatureAlgorithm by the OID
|
static SignatureAlgorithm |
SignatureAlgorithm.forOidAndParams(String oid,
byte[] sigAlgParams) |
Returns a corresponding SignatureAlgorithm by the OID and signature algorithm parameters
|
static SignatureAlgorithm |
SignatureAlgorithm.forXML(String xmlName) |
Returns a corresponding SignatureAlgorithm by the XML URI string
|
static SignatureAlgorithm |
SignatureAlgorithm.forXML(String xmlName,
SignatureAlgorithm defaultValue) |
This method return the SignatureAlgorithm or the default value if the algorithm is unknown.
|
static SignatureAlgorithm |
SignatureAlgorithm.getAlgorithm(EncryptionAlgorithm encryptionAlgorithm,
DigestAlgorithm digestAlgorithm) |
For given encryption algorithm and digest algorithm this function returns the signature algorithm.
|
static SignatureAlgorithm |
SignatureAlgorithm.getAlgorithm(EncryptionAlgorithm encryptionAlgorithm,
DigestAlgorithm digestAlgorithm,
MaskGenerationFunction mgf) |
For given encryption algorithm and digest algorithm this function returns the signature algorithm.
|
static SignatureAlgorithm |
SignatureAlgorithm.valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SignatureAlgorithm[] |
SignatureAlgorithm.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|