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 BlockEncryptionAlgorithm
getBlockEncryptionAlgorithm()
KeyEncryptionAlgorithm
getKeyEncryptionAlgorithm()
void
setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
void
setKeyEncryptionAlgorithm(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:
getKeyEncryptionAlgorithm
in interfaceJweDecrypter
-
setKeyEncryptionAlgorithm
public void setKeyEncryptionAlgorithm(KeyEncryptionAlgorithm keyEncryptionAlgorithm)
- Specified by:
setKeyEncryptionAlgorithm
in interfaceJweDecrypter
-
getBlockEncryptionAlgorithm
public BlockEncryptionAlgorithm getBlockEncryptionAlgorithm()
- Specified by:
getBlockEncryptionAlgorithm
in interfaceJweDecrypter
-
setBlockEncryptionAlgorithm
public void setBlockEncryptionAlgorithm(BlockEncryptionAlgorithm blockEncryptionAlgorithm)
- Specified by:
setBlockEncryptionAlgorithm
in interfaceJweDecrypter
-
-