 
                        
        
                        
        com.nimbusds.jose.crypto.AESDecrypter Maven / Gradle / Ivy
/*
 * nimbus-jose-jwt
 *
 * Copyright 2012-2016, Connect2id Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use
 * this file except in compliance with the License. You may obtain a copy of the
 * License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed
 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */
package com.nimbusds.jose.crypto;
import java.util.Set;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import com.nimbusds.jose.crypto.impl.*;
import net.jcip.annotations.ThreadSafe;
import com.nimbusds.jose.*;
import com.nimbusds.jose.jwk.OctetSequenceKey;
import com.nimbusds.jose.util.Base64URL;
/**
 * AES and AES GCM key wrap decrypter of {@link com.nimbusds.jose.JWEObject JWE
 * objects}. Expects an AES key.
 *
 * Unwraps the encrypted Content Encryption Key (CEK) with the specified AES
 * key, and then uses the CEK along with the IV and authentication tag to
 * decrypt the cipher text. See RFC 7518, sections
 * 4.4 and
 * 4.7 for more
 * information.
 *
 * 
This class is thread-safe.
 *
 * 
Supports the following key management algorithms:
 *
 * 
 *     - {@link com.nimbusds.jose.JWEAlgorithm#A128KW}
 *     
- {@link com.nimbusds.jose.JWEAlgorithm#A192KW}
 *     
- {@link com.nimbusds.jose.JWEAlgorithm#A256KW}
 *     
- {@link com.nimbusds.jose.JWEAlgorithm#A128GCMKW}
 *     
- {@link com.nimbusds.jose.JWEAlgorithm#A192GCMKW}
 *     
- {@link com.nimbusds.jose.JWEAlgorithm#A256GCMKW}
 * 
*
 *Supports the following content encryption algorithms:
 *
 * 
 *     - {@link com.nimbusds.jose.EncryptionMethod#A128CBC_HS256}
 *     
- {@link com.nimbusds.jose.EncryptionMethod#A192CBC_HS384}
 *     
- {@link com.nimbusds.jose.EncryptionMethod#A256CBC_HS512}
 *     
- {@link com.nimbusds.jose.EncryptionMethod#A128GCM}
 *     
- {@link com.nimbusds.jose.EncryptionMethod#A192GCM}
 *     
- {@link com.nimbusds.jose.EncryptionMethod#A256GCM}
 *     
- {@link com.nimbusds.jose.EncryptionMethod#A128CBC_HS256_DEPRECATED}
 *     
- {@link com.nimbusds.jose.EncryptionMethod#A256CBC_HS512_DEPRECATED}
 * 
*
 * @author Melisa Halsband
 * @author Vladimir Dzhuvinov
 * @version 2015-06-29
 */
@ThreadSafe
public class AESDecrypter extends AESCryptoProvider implements JWEDecrypter, CriticalHeaderParamsAware {
	/**
	 * The critical header policy.
	 */
	private final CriticalHeaderParamsDeferral critPolicy = new CriticalHeaderParamsDeferral();
	/**
	 * Creates a new AES decrypter.
	 *
	 * @param kek The Key Encrypting Key. Must be 128 bits (16 bytes), 192
	 *            bits (24 bytes) or 256 bits (32 bytes). Must not be
	 *            {@code null}.
	 *
	 * @throws KeyLengthException If the KEK length is invalid.
	 */
	public AESDecrypter(final SecretKey kek)
		throws KeyLengthException {
		this(kek, null);
	}
	/**
	 * Creates a new AES decrypter.
	 *
	 * @param keyBytes The Key Encrypting Key, as a byte array. Must be 128
	 *                 bits (16 bytes), 192 bits (24 bytes) or 256 bits (32
	 *                 bytes). Must not be {@code null}.
	 *
	 * @throws KeyLengthException If the KEK length is invalid.
	 */
	public AESDecrypter(final byte[] keyBytes)
		throws KeyLengthException {
		this(new SecretKeySpec(keyBytes, "AES"));
	}
	/**
	 * Creates a new AES decrypter.
	 *
	 * @param octJWK The Key Encryption Key, as a JWK. Must be 128 bits (16
	 *               bytes), 192 bits (24 bytes), 256 bits (32 bytes), 384
	 *               bits (48 bytes) or 512 bits (64 bytes) long. Must not
	 *               be {@code null}.
	 *
	 * @throws KeyLengthException If the KEK length is invalid.
	 */
	public AESDecrypter(final OctetSequenceKey octJWK)
		throws KeyLengthException {
		this(octJWK.toSecretKey("AES"));
	}
	/**
	 * Creates a new AES decrypter.
	 *
	 * @param kek            The Key Encrypting Key. Must be 128 bits (16
	 *                       bytes), 192 bits (24 bytes) or 256 bits (32
	 *                       bytes). Must not be {@code null}.
	 * @param defCritHeaders The names of the critical header parameters
	 *                       that are deferred to the application for
	 *                       processing, empty set or {@code null} if none.
	 *
	 * @throws KeyLengthException If the KEK length is invalid.
	 */
	public AESDecrypter(final SecretKey kek, final Set defCritHeaders)
		throws KeyLengthException {
		super(kek);
		critPolicy.setDeferredCriticalHeaderParams(defCritHeaders);
	}
	@Override
	public Set getProcessedCriticalHeaderParams() {
		return critPolicy.getProcessedCriticalHeaderParams();
	}
	@Override
	public Set getDeferredCriticalHeaderParams() {
		return critPolicy.getProcessedCriticalHeaderParams();
	}
	@Override
	public byte[] decrypt(final JWEHeader header,
			      final Base64URL encryptedKey,
			      final Base64URL iv,
			      final Base64URL cipherText,
			      final Base64URL authTag)
		throws JOSEException {
		// Validate required JWE parts
		if (encryptedKey == null) {
			throw new JOSEException("Missing JWE encrypted key");
		}
		if (iv == null) {
			throw new JOSEException("Missing JWE initialization vector (IV)");
		}
		if (authTag == null) {
			throw new JOSEException("Missing JWE authentication tag");
		}
		critPolicy.ensureHeaderPasses(header);
		// Derive the content encryption key
		JWEAlgorithm alg = header.getAlgorithm();
		int keyLength = header.getEncryptionMethod().cekBitLength();
		final SecretKey cek;
		if (alg.equals(JWEAlgorithm.A128KW) ||
		    alg.equals(JWEAlgorithm.A192KW) ||
		    alg.equals(JWEAlgorithm.A256KW))   {
			cek = AESKW.unwrapCEK(getKey(), encryptedKey.decode(), getJCAContext().getKeyEncryptionProvider());
		} else if (alg.equals(JWEAlgorithm.A128GCMKW) ||
			   alg.equals(JWEAlgorithm.A192GCMKW) ||
			   alg.equals(JWEAlgorithm.A256GCMKW)) {
			if (header.getIV() == null) {
				throw new JOSEException("Missing JWE \"iv\" header parameter");
			}
			byte[] keyIV = header.getIV().decode();
			if (header.getAuthTag() == null) {
				throw new JOSEException("Missing JWE \"tag\" header parameter");
			}
			byte[] keyTag = header.getAuthTag().decode();
			AuthenticatedCipherText authEncrCEK = new AuthenticatedCipherText(encryptedKey.decode(), keyTag);
			cek = AESGCMKW.decryptCEK(getKey(), keyIV, authEncrCEK, keyLength, getJCAContext().getKeyEncryptionProvider());
		} else {
			throw new JOSEException(AlgorithmSupportMessage.unsupportedJWEAlgorithm(alg, SUPPORTED_ALGORITHMS));
		}
		return ContentCryptoProvider.decrypt(header, encryptedKey, iv, cipherText, authTag, cek, getJCAContext());
	}
}   © 2015 - 2025 Weber Informatics LLC | Privacy Policy