Package io.jans.as.model.jwe
Interface JweDecrypter
-
- All Known Implementing Classes:
AbstractJweDecrypter,JweDecrypterImpl
public interface JweDecrypter- Author:
- Javier Rojas Blum Date: 12.04.2012
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Jwedecrypt(java.lang.String encryptedJwe)BlockEncryptionAlgorithmgetBlockEncryptionAlgorithm()KeyEncryptionAlgorithmgetKeyEncryptionAlgorithm()voidsetBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)voidsetKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
-
-
-
Method Detail
-
getKeyEncryptionAlgorithm
KeyEncryptionAlgorithm getKeyEncryptionAlgorithm()
-
setKeyEncryptionAlgorithm
void setKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
-
getBlockEncryptionAlgorithm
BlockEncryptionAlgorithm getBlockEncryptionAlgorithm()
-
setBlockEncryptionAlgorithm
void setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
-
decrypt
Jwe decrypt(java.lang.String encryptedJwe) throws InvalidJweException
- Throws:
InvalidJweException
-
-