| Package | Description |
|---|---|
| com.nimbusds.jose |
Javascript Object Signing and Encryption (JOSE) classes.
|
| com.nimbusds.jose.crypto |
Implementations of selected Javascript Object Signing and Encryption (JOSE)
algorithms.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JWEHeader
JSON Web Encryption (JWE) header.
|
| Modifier and Type | Method and Description |
|---|---|
ReadOnlyJWEHeader |
JWEObject.getHeader() |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
JWEDecrypter.decrypt(ReadOnlyJWEHeader header,
Base64URL encryptedKey,
Base64URL iv,
Base64URL cipherText,
Base64URL authTag)
Decrypts the specified cipher text of a
JWE Object. |
JWECryptoParts |
JWEEncrypter.encrypt(ReadOnlyJWEHeader header,
byte[] clearText)
Encrypts the specified clear text of a
JWE object. |
| Constructor and Description |
|---|
JWEObject(ReadOnlyJWEHeader header,
Payload payload)
Creates a new to-be-encrypted JSON Web Encryption (JWE) object with
the specified header and payload.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
DirectDecrypter.decrypt(ReadOnlyJWEHeader header,
Base64URL encryptedKey,
Base64URL iv,
Base64URL cipherText,
Base64URL authTag) |
byte[] |
RSADecrypter.decrypt(ReadOnlyJWEHeader header,
Base64URL encryptedKey,
Base64URL iv,
Base64URL cipherText,
Base64URL authTag) |
JWECryptoParts |
RSAEncrypter.encrypt(ReadOnlyJWEHeader header,
byte[] bytes) |
JWECryptoParts |
DirectEncrypter.encrypt(ReadOnlyJWEHeader readOnlyJWEHeader,
byte[] bytes) |
Copyright © 2014 Connect2id Ltd.. All Rights Reserved.