Class JweEncryptionInput
java.lang.Object
org.apache.cxf.rs.security.jose.jwe.JweEncryptionInput
-
Constructor Summary
ConstructorsConstructorDescriptionJweEncryptionInput(JweHeaders jweHeaders) JweEncryptionInput(JweHeaders jweHeaders, byte[] content) JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] aad) JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] cek, byte[] iv) JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] aad, byte[] cek, byte[] iv) -
Method Summary
Modifier and TypeMethodDescriptionbyte[]getAad()byte[]getCek()byte[]byte[]getIv()booleanvoidsetAad(byte[] aad) voidsetCek(byte[] cek) voidsetContent(byte[] content) voidsetContentEncryptionRequired(boolean required) voidsetIv(byte[] iv) voidsetJweHeaders(JweHeaders jweHeaders)
-
Constructor Details
-
JweEncryptionInput
public JweEncryptionInput() -
JweEncryptionInput
-
JweEncryptionInput
-
JweEncryptionInput
-
JweEncryptionInput
-
JweEncryptionInput
-
-
Method Details
-
getJweHeaders
-
setJweHeaders
-
getCek
public byte[] getCek() -
setCek
public void setCek(byte[] cek) -
getIv
public byte[] getIv() -
setIv
public void setIv(byte[] iv) -
getAad
public byte[] getAad() -
setAad
public void setAad(byte[] aad) -
getContent
public byte[] getContent() -
setContent
public void setContent(byte[] content) -
isContentEncryptionRequired
public boolean isContentEncryptionRequired() -
setContentEncryptionRequired
public void setContentEncryptionRequired(boolean required)
-