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 Jwe
decrypt(String encryptedJwe)
BlockEncryptionAlgorithm
getBlockEncryptionAlgorithm()
KeyEncryptionAlgorithm
getKeyEncryptionAlgorithm()
void
setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
void
setKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
-
-
-
Method Detail
-
getKeyEncryptionAlgorithm
KeyEncryptionAlgorithm getKeyEncryptionAlgorithm()
-
setKeyEncryptionAlgorithm
void setKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
-
getBlockEncryptionAlgorithm
BlockEncryptionAlgorithm getBlockEncryptionAlgorithm()
-
setBlockEncryptionAlgorithm
void setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
-
decrypt
Jwe decrypt(String encryptedJwe) throws InvalidJweException
- Throws:
InvalidJweException
-
-