Class JweEncryptionOutput
- java.lang.Object
-
- org.apache.cxf.rs.security.jose.jwe.JweEncryptionOutput
-
public class JweEncryptionOutput extends Object
-
-
Constructor Summary
Constructors Constructor Description JweEncryptionOutput(Cipher cipher, JweHeaders headers, byte[] encryptedContentEncryptionKey, byte[] iv, AuthenticationTagProducer authTagProducer, KeyProperties keyProps, byte[] encryptedContent, byte[] authTag)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getAuthTag()AuthenticationTagProducergetAuthTagProducer()CiphergetCipher()byte[]getEncryptedContent()byte[]getEncryptedContentEncryptionKey()JweHeadersgetHeaders()byte[]getIv()booleanisCompressionSupported()
-
-
-
Constructor Detail
-
JweEncryptionOutput
public JweEncryptionOutput(Cipher cipher, JweHeaders headers, byte[] encryptedContentEncryptionKey, byte[] iv, AuthenticationTagProducer authTagProducer, KeyProperties keyProps, byte[] encryptedContent, byte[] authTag)
-
-
Method Detail
-
getCipher
public Cipher getCipher()
-
getHeaders
public JweHeaders getHeaders()
-
getEncryptedContentEncryptionKey
public byte[] getEncryptedContentEncryptionKey()
-
getIv
public byte[] getIv()
-
isCompressionSupported
public boolean isCompressionSupported()
-
getAuthTagProducer
public AuthenticationTagProducer getAuthTagProducer()
-
getEncryptedContent
public byte[] getEncryptedContent()
-
getAuthTag
public byte[] getAuthTag()
-
-