Class PbesHmacAesWrapKeyDecryptionAlgorithm
- java.lang.Object
-
- org.apache.cxf.rs.security.jose.jwe.PbesHmacAesWrapKeyDecryptionAlgorithm
-
- All Implemented Interfaces:
KeyDecryptionProvider
public class PbesHmacAesWrapKeyDecryptionAlgorithm extends Object implements KeyDecryptionProvider
-
-
Constructor Summary
Constructors Constructor Description PbesHmacAesWrapKeyDecryptionAlgorithm(byte[] password)PbesHmacAesWrapKeyDecryptionAlgorithm(byte[] password, KeyAlgorithm algo, boolean hashLargePasswords)PbesHmacAesWrapKeyDecryptionAlgorithm(char[] password)PbesHmacAesWrapKeyDecryptionAlgorithm(char[] password, KeyAlgorithm algo, boolean hashLargePasswords)PbesHmacAesWrapKeyDecryptionAlgorithm(String password)PbesHmacAesWrapKeyDecryptionAlgorithm(String password, KeyAlgorithm algo, boolean hashLargePasswords)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeyAlgorithmgetAlgorithm()byte[]getDecryptedContentEncryptionKey(JweDecryptionInput jweDecryptionInput)
-
-
-
Constructor Detail
-
PbesHmacAesWrapKeyDecryptionAlgorithm
public PbesHmacAesWrapKeyDecryptionAlgorithm(String password)
-
PbesHmacAesWrapKeyDecryptionAlgorithm
public PbesHmacAesWrapKeyDecryptionAlgorithm(String password, KeyAlgorithm algo, boolean hashLargePasswords)
-
PbesHmacAesWrapKeyDecryptionAlgorithm
public PbesHmacAesWrapKeyDecryptionAlgorithm(char[] password)
-
PbesHmacAesWrapKeyDecryptionAlgorithm
public PbesHmacAesWrapKeyDecryptionAlgorithm(char[] password, KeyAlgorithm algo, boolean hashLargePasswords)
-
PbesHmacAesWrapKeyDecryptionAlgorithm
public PbesHmacAesWrapKeyDecryptionAlgorithm(byte[] password)
-
PbesHmacAesWrapKeyDecryptionAlgorithm
public PbesHmacAesWrapKeyDecryptionAlgorithm(byte[] password, KeyAlgorithm algo, boolean hashLargePasswords)
-
-
Method Detail
-
getDecryptedContentEncryptionKey
public byte[] getDecryptedContentEncryptionKey(JweDecryptionInput jweDecryptionInput)
- Specified by:
getDecryptedContentEncryptionKeyin interfaceKeyDecryptionProvider
-
getAlgorithm
public KeyAlgorithm getAlgorithm()
- Specified by:
getAlgorithmin interfaceKeyDecryptionProvider
-
-