Uses of Class
io.jans.as.model.crypto.encryption.KeyEncryptionAlgorithm
-
Packages that use KeyEncryptionAlgorithm Package Description io.jans.as.model.crypto.encryption io.jans.as.model.jwe io.jans.as.model.jwt -
-
Uses of KeyEncryptionAlgorithm in io.jans.as.model.crypto.encryption
Methods in io.jans.as.model.crypto.encryption that return KeyEncryptionAlgorithm Modifier and Type Method Description static KeyEncryptionAlgorithm
KeyEncryptionAlgorithm. fromName(java.lang.String name)
static KeyEncryptionAlgorithm
KeyEncryptionAlgorithm. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KeyEncryptionAlgorithm[]
KeyEncryptionAlgorithm. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of KeyEncryptionAlgorithm in io.jans.as.model.jwe
Methods in io.jans.as.model.jwe that return KeyEncryptionAlgorithm Modifier and Type Method Description KeyEncryptionAlgorithm
AbstractJweDecrypter. getKeyEncryptionAlgorithm()
KeyEncryptionAlgorithm
AbstractJweEncrypter. getKeyEncryptionAlgorithm()
KeyEncryptionAlgorithm
JweDecrypter. getKeyEncryptionAlgorithm()
Methods in io.jans.as.model.jwe with parameters of type KeyEncryptionAlgorithm Modifier and Type Method Description void
AbstractJweDecrypter. setKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
void
JweDecrypter. setKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
Constructors in io.jans.as.model.jwe with parameters of type KeyEncryptionAlgorithm Constructor Description AbstractJweEncrypter(KeyEncryptionAlgorithm keyEncryptionAlgorithm, BlockEncryptionAlgorithm blockEncryptionAlgorithm)
JweEncrypterImpl(KeyEncryptionAlgorithm keyEncryptionAlgorithm, BlockEncryptionAlgorithm blockEncryptionAlgorithm, byte[] sharedSymmetricKey)
JweEncrypterImpl(KeyEncryptionAlgorithm keyEncryptionAlgorithm, BlockEncryptionAlgorithm blockEncryptionAlgorithm, java.security.PublicKey publicKey)
-
Uses of KeyEncryptionAlgorithm in io.jans.as.model.jwt
Methods in io.jans.as.model.jwt with parameters of type KeyEncryptionAlgorithm Modifier and Type Method Description JwtHeader
JwtHeader. setAlgorithm(KeyEncryptionAlgorithm algorithm)
Identifies the cryptographic algorithm used to encrypt the JWE.
-