Uses of Class
io.jans.as.model.crypto.encryption.BlockEncryptionAlgorithm
-
Packages that use BlockEncryptionAlgorithm Package Description io.jans.as.model.crypto.encryption io.jans.as.model.jwe io.jans.as.model.jwt -
-
Uses of BlockEncryptionAlgorithm in io.jans.as.model.crypto.encryption
Methods in io.jans.as.model.crypto.encryption that return BlockEncryptionAlgorithm Modifier and Type Method Description static BlockEncryptionAlgorithm
BlockEncryptionAlgorithm. fromName(java.lang.String name)
static BlockEncryptionAlgorithm
BlockEncryptionAlgorithm. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BlockEncryptionAlgorithm[]
BlockEncryptionAlgorithm. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of BlockEncryptionAlgorithm in io.jans.as.model.jwe
Methods in io.jans.as.model.jwe that return BlockEncryptionAlgorithm Modifier and Type Method Description BlockEncryptionAlgorithm
AbstractJweDecrypter. getBlockEncryptionAlgorithm()
BlockEncryptionAlgorithm
AbstractJweEncrypter. getBlockEncryptionAlgorithm()
BlockEncryptionAlgorithm
JweDecrypter. getBlockEncryptionAlgorithm()
Methods in io.jans.as.model.jwe with parameters of type BlockEncryptionAlgorithm Modifier and Type Method Description void
AbstractJweDecrypter. setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
void
JweDecrypter. setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
Constructors in io.jans.as.model.jwe with parameters of type BlockEncryptionAlgorithm 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 BlockEncryptionAlgorithm in io.jans.as.model.jwt
Methods in io.jans.as.model.jwt that return BlockEncryptionAlgorithm Modifier and Type Method Description BlockEncryptionAlgorithm
JwtHeader. getEncryptionMethod()
Methods in io.jans.as.model.jwt with parameters of type BlockEncryptionAlgorithm Modifier and Type Method Description void
JwtHeader. setEncryptionMethod(BlockEncryptionAlgorithm encryptionMethod)
Identifies the block encryption algorithm used to encrypt the Plaintext to produce the Cipher Text.
-