 
                        
        
                        
        com.nimbusds.jose.crypto.PasswordBasedDecrypter 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 com.nimbusds.jose.*;
import com.nimbusds.jose.crypto.impl.*;
import com.nimbusds.jose.util.Base64URL;
import com.nimbusds.jose.util.StandardCharset;
import net.jcip.annotations.ThreadSafe;
/**
 * Password-based decrypter of {@link com.nimbusds.jose.JWEObject JWE objects}.
 * Expects a password.
 *
 * See RFC 7518
 * section 4.8
 * for more information.
 *
 * 
This class is thread-safe.
 *
 * 
Supports the following key management algorithms:
 *
 * 
 *     - {@link com.nimbusds.jose.JWEAlgorithm#PBES2_HS256_A128KW}
 *     
- {@link com.nimbusds.jose.JWEAlgorithm#PBES2_HS384_A192KW}
 *     
- {@link com.nimbusds.jose.JWEAlgorithm#PBES2_HS512_A256KW}
 * 
*
 *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 Vladimir Dzhuvinov
 * @version 2016-07-26
 */
@ThreadSafe
public class PasswordBasedDecrypter extends PasswordBasedCryptoProvider implements JWEDecrypter, CriticalHeaderParamsAware {
	/**
	 * The critical header policy.
	 */
	private final CriticalHeaderParamsDeferral critPolicy = new CriticalHeaderParamsDeferral();
	/**
	 * Creates a new password-based decrypter.
	 *
	 * @param password The password bytes. Must not be empty or
	 *                 {@code null}.
	 */
	public PasswordBasedDecrypter(final byte[] password) {
		super(password);
	}
	/**
	 * Creates a new password-based decrypter.
	 *
	 * @param password The password, as a UTF-8 encoded string. Must not be
	 *                 empty or {@code null}.
	 */
	public PasswordBasedDecrypter(final String password) {
		super(password.getBytes(StandardCharset.UTF_8));
	}
	@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");
		}
		if (header.getPBES2Salt() == null) {
			throw new JOSEException("Missing JWE \"p2s\" header parameter");
		}
		final byte[] salt = header.getPBES2Salt().decode();
		if (header.getPBES2Count() < 1) {
			throw new JOSEException("Missing JWE \"p2c\" header parameter");
		}
		final int iterationCount = header.getPBES2Count();
		critPolicy.ensureHeaderPasses(header);
		final JWEAlgorithm alg = header.getAlgorithm();
		final byte[] formattedSalt = PBKDF2.formatSalt(alg, salt);
		final PRFParams prfParams = PRFParams.resolve(alg, getJCAContext().getMACProvider());
		final SecretKey psKey = PBKDF2.deriveKey(getPassword(), formattedSalt, iterationCount, prfParams);
		final SecretKey cek = AESKW.unwrapCEK(psKey, encryptedKey.decode(), getJCAContext().getKeyEncryptionProvider());
		return ContentCryptoProvider.decrypt(header, encryptedKey, iv, cipherText, authTag, cek, getJCAContext());
	}
}
  © 2015 - 2025 Weber Informatics LLC | Privacy Policy