Package io.jans.as.model.jwe
Class AbstractJweDecrypter
- java.lang.Object
-
- io.jans.as.model.jwe.AbstractJweDecrypter
-
- All Implemented Interfaces:
JweDecrypter
- Direct Known Subclasses:
JweDecrypterImpl
public abstract class AbstractJweDecrypter extends java.lang.Object implements JweDecrypter
- Version:
- November 20, 2018
- Author:
- Javier Rojas Blum
-
-
Constructor Summary
Constructors Constructor Description AbstractJweDecrypter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BlockEncryptionAlgorithmgetBlockEncryptionAlgorithm()KeyEncryptionAlgorithmgetKeyEncryptionAlgorithm()voidsetBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)voidsetKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.jans.as.model.jwe.JweDecrypter
decrypt
-
-
-
-
Method Detail
-
getKeyEncryptionAlgorithm
public KeyEncryptionAlgorithm getKeyEncryptionAlgorithm()
- Specified by:
getKeyEncryptionAlgorithmin interfaceJweDecrypter
-
setKeyEncryptionAlgorithm
public void setKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
- Specified by:
setKeyEncryptionAlgorithmin interfaceJweDecrypter
-
getBlockEncryptionAlgorithm
public BlockEncryptionAlgorithm getBlockEncryptionAlgorithm()
- Specified by:
getBlockEncryptionAlgorithmin interfaceJweDecrypter
-
setBlockEncryptionAlgorithm
public void setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
- Specified by:
setBlockEncryptionAlgorithmin interfaceJweDecrypter
-
-