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

com.nimbusds.jose.crypto.PasswordBasedEncrypter Maven / Gradle / Ivy

package com.nimbusds.jose.crypto;


import java.nio.charset.Charset;

import javax.crypto.SecretKey;

import net.jcip.annotations.ThreadSafe;

import com.nimbusds.jose.*;
import com.nimbusds.jose.util.Base64URL;


/**
 * Password-based encrypter of {@link com.nimbusds.jose.JWEObject JWE objects}.
 * 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 2015-06-08 */ @ThreadSafe public class PasswordBasedEncrypter extends PasswordBasedCryptoProvider implements JWEEncrypter { /** * The minimum salt length (8 bytes). */ public static final int MIN_SALT_LENGTH = 8; /** * The cryptographic salt length, in bytes. */ private final int saltLength; /** * The minimum recommended iteration count (1000). */ public static final int MIN_RECOMMENDED_ITERATION_COUNT = 1000; /** * The iteration count. */ private final int iterationCount; /** * Creates a new password-based encrypter. * * @param password The password bytes. Must not be empty or * {@code null}. * @param saltLength The length of the generated cryptographic * salts, in bytes. Must be at least 8 bytes. * @param iterationCount The pseudo-random function (PRF) iteration * count. Must be at least 1000. */ public PasswordBasedEncrypter(final byte[] password, final int saltLength, final int iterationCount) { super(password); if (saltLength < MIN_SALT_LENGTH) { throw new IllegalArgumentException("The minimum salt length (p2s) is " + MIN_SALT_LENGTH + " bytes"); } this.saltLength = saltLength; if (iterationCount < MIN_RECOMMENDED_ITERATION_COUNT) { throw new IllegalArgumentException("The minimum recommended iteration count (p2c) is " + MIN_RECOMMENDED_ITERATION_COUNT); } this.iterationCount = iterationCount; } /** * Creates a new password-based encrypter. * * @param password The password, as a UTF-8 encoded string. Must * not be empty or {@code null}. * @param saltLength The length of the generated cryptographic * salts, in bytes. Must be at least 8 bytes. * @param iterationCount The pseudo-random function (PRF) iteration * count. Must be at least 1000. */ public PasswordBasedEncrypter(final String password, final int saltLength, final int iterationCount) { this(password.getBytes(Charset.forName("UTF-8")), saltLength, iterationCount); } @Override public JWECryptoParts encrypt(final JWEHeader header, final byte[] clearText) throws JOSEException { final JWEAlgorithm alg = header.getAlgorithm(); final EncryptionMethod enc = header.getEncryptionMethod(); final byte[] salt = new byte[saltLength]; getJCAContext().getSecureRandom().nextBytes(salt); final byte[] formattedSalt = PBKDF2.formatSalt(alg, salt); final PRFParams prfParams = PRFParams.resolve(alg, getJCAContext().getMACProvider()); final SecretKey psKey = PBKDF2.deriveKey(getPassword(), formattedSalt, iterationCount, prfParams); // We need to work on the header final JWEHeader updatedHeader = new JWEHeader.Builder(header). pbes2Salt(Base64URL.encode(salt)). pbes2Count(iterationCount). build(); final SecretKey cek = ContentCryptoProvider.generateCEK(enc, getJCAContext().getSecureRandom()); // The second JWE part final Base64URL encryptedKey = Base64URL.encode(AESKW.wrapCEK(cek, psKey, getJCAContext().getKeyEncryptionProvider())); return ContentCryptoProvider.encrypt(updatedHeader, clearText, cek, encryptedKey, getJCAContext()); } /** * Returns the length of the generated cryptographic salts. * * @return The length of the generated cryptographic salts, in bytes. */ public int getSaltLength() { return saltLength; } /** * Returns the pseudo-random function (PRF) iteration count. * * @return The iteration count. */ public int getIterationCount() { return iterationCount; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy