Package | Description |
---|---|
org.picketlink.json.jose |
Javascript Object Signing and Encryption (JOSE) classes.
|
org.picketlink.json.jose.crypto |
This package provides the cryptography related classes to sign and encrypt JSON.
|
Modifier and Type | Class and Description |
---|---|
class |
JWEBuilder<T extends JWE,B extends JWEBuilder<?,?>>
JSON Web Encryption (JWE) header Builder.
|
Modifier and Type | Method and Description |
---|---|
byte[] |
JWEDecrypter.decrypt(JWE jweHeader,
String encryptedKey,
String iv,
String cipherText,
String authTag) |
String |
JWEEncrypter.encrypt(JWE jweHeader,
byte[] bytes)
Creates a JWE compact serialization.This string is BASE64URL(UTF8(JWE Protected Header)) || '.' || BASE64URL(JWEEncrypted
Key) || '.' || BASE64URL(JWE Initialization Vector) || '.' || BASE64URL(JWE Ciphertext) || '.' ||
BASE64URL(JWEAuthentication Tag).
|
Copyright © 2017. All rights reserved.