Class JweDecryptionInput
- java.lang.Object
-
- org.apache.cxf.rs.security.jose.jwe.JweDecryptionInput
-
public class JweDecryptionInput extends Object
-
-
Constructor Summary
Constructors Constructor Description JweDecryptionInput(byte[] encryptedCEK, byte[] initVector, byte[] encryptedContent, byte[] authTag, byte[] aad, String headersJson, JweHeaders jweHeaders)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getAad()byte[]getAuthTag()StringgetDecodedJsonHeaders()byte[]getEncryptedCEK()byte[]getEncryptedContent()byte[]getInitVector()JweHeadersgetJweHeaders()
-
-
-
Constructor Detail
-
JweDecryptionInput
public JweDecryptionInput(byte[] encryptedCEK, byte[] initVector, byte[] encryptedContent, byte[] authTag, byte[] aad, String headersJson, JweHeaders jweHeaders)
-
-
Method Detail
-
getEncryptedCEK
public byte[] getEncryptedCEK()
-
getInitVector
public byte[] getInitVector()
-
getEncryptedContent
public byte[] getEncryptedContent()
-
getAuthTag
public byte[] getAuthTag()
-
getAad
public byte[] getAad()
-
getDecodedJsonHeaders
public String getDecodedJsonHeaders()
-
getJweHeaders
public JweHeaders getJweHeaders()
-
-