All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nimbusds.jose.JWEDecrypter Maven / Gradle / Ivy

Go to download

Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)

There is a newer version: 9.41.1
Show newest version
package com.nimbusds.jose;


import com.nimbusds.jose.util.Base64URL;


/**
 * Interface for decrypting JSON Web Encryption (JWE) objects.
 *
 * 

Callers can query the decrypter to determine its algorithm capabilities as * well as the JWE algorithms and header parameters that are accepted for * processing. * * @author Vladimir Dzhuvinov * @version $version$ (2013-05-06) */ public interface JWEDecrypter extends JWEAlgorithmProvider { /** * Gets the JWE header filter associated with the decrypter. Specifies * the names of those {@link #supportedAlgorithms supported JWE * algorithms} and header parameters that the decrypter is configured to * accept. * *

Attempting to {@link #decrypt decrypt} a JWE object with an * algorithm or header parameter that is not accepted must result in a * {@link JOSEException}. * * @return The JWE header filter. */ public JWEHeaderFilter getJWEHeaderFilter(); /** * Decrypts the specified cipher text of a {@link JWEObject JWE Object}. * * @param header The JSON Web Encryption (JWE) header. Must * specify an accepted JWE algorithm, must contain * only accepted header parameters, and must not * be {@code null}. * @param encryptedKey The encrypted key, {@code null} if not required * by the JWE algorithm. * @param iv The initialisation vector, {@code null} if not * required by the JWE algorithm. * @param cipherText The cipher text to decrypt. Must not be * {@code null}. * @param authTag The authentication tag, {@code null} if not * required. * * @return The clear text. * * @throws JOSEException If the JWE algorithm is not accepted, if a * header parameter is not accepted, or if * decryption failed for some other reason. */ public byte[] decrypt(final ReadOnlyJWEHeader header, final Base64URL encryptedKey, final Base64URL iv, final Base64URL cipherText, final Base64URL authTag) throws JOSEException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy