Interface JweEncryptionProvider
-
- All Superinterfaces:
JweKeyProperties
- All Known Implementing Classes:
AbstractJweEncryption,AesCbcHmacJweEncryption,DirectKeyJweEncryption,EcdhDirectKeyJweEncryption,JweEncryption
public interface JweEncryptionProvider extends JweKeyProperties
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringencrypt(byte[] jweContent, JweHeaders jweHeaders)JWE compact encryptionJweEncryptionOutputgetEncryptionOutput(JweEncryptionInput jweInput)Prepare JWE state for completing either JWE compact or JSON encryption-
Methods inherited from interface org.apache.cxf.rs.security.jose.jwe.JweKeyProperties
getContentAlgorithm, getKeyAlgorithm
-
-
-
-
Method Detail
-
encrypt
String encrypt(byte[] jweContent, JweHeaders jweHeaders)
JWE compact encryption
-
getEncryptionOutput
JweEncryptionOutput getEncryptionOutput(JweEncryptionInput jweInput)
Prepare JWE state for completing either JWE compact or JSON encryption
-
-