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

org.jboss.resteasy.jose.jwe.crypto.DirectEncrypter Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.jose.jwe.crypto;

import java.nio.charset.StandardCharsets;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Base64;

import javax.crypto.SecretKey;

import org.jboss.resteasy.jose.i18n.Messages;
import org.jboss.resteasy.jose.jwe.CompressionAlgorithm;
import org.jboss.resteasy.jose.jwe.EncryptionMethod;

/**
 * Direct encrypter with a
 * shared symmetric key. This class is thread-safe.
 * 

* Supports the following JWE algorithms: *

*
    *
  • DIR *
*

* Supports the following encryption methods: *

*
    *
  • A128CBC_HS256} *
  • A256CBC_HS512} *
  • A128GCM} *
  • A256GCM} *
* * @author Vladimir Dzhuvinov * @version $version$ (2013-05-29) */ public class DirectEncrypter { /** * Random byte generator. */ private static SecureRandom randomGen; /** * Initialises the secure random byte generator. * * @throws RuntimeException If the secure random byte generator couldn't * be instantiated. */ private static void initSecureRandom() { try { randomGen = SecureRandom.getInstance("SHA1PRNG"); } catch (NoSuchAlgorithmException e) { throw new RuntimeException(e.getMessage(), e); } } public static String encrypt(EncryptionMethod enc, CompressionAlgorithm compressionAlgorithm, String encodedJWEHeader, final SecretKey key, final byte[] bytes) { if (randomGen == null) initSecureRandom(); if (enc.getCekBitLength() != key.getEncoded().length * 8) { throw new RuntimeException(Messages.MESSAGES.contentEncryptionKeyLength(enc.getCekBitLength(), enc)); } // Apply compression if instructed byte[] plainText = DeflateHelper.applyCompression(compressionAlgorithm, bytes); // Compose the AAD byte[] aad = encodedJWEHeader.getBytes(StandardCharsets.UTF_8); // Encrypt the plain text according to the JWE enc byte[] iv; AuthenticatedCipherText authCipherText; if (enc.equals(EncryptionMethod.A128CBC_HS256) || enc.equals(EncryptionMethod.A256CBC_HS512)) { iv = AESCBC.generateIV(randomGen); authCipherText = AESCBC.encryptAuthenticated(key, iv, plainText, aad); } else if (enc.equals(EncryptionMethod.A128GCM) || enc.equals(EncryptionMethod.A256GCM)) { iv = AESGCM.generateIV(randomGen); authCipherText = AESGCM.encrypt(key, iv, plainText, aad); } else { throw new RuntimeException(Messages.MESSAGES.unsupportedEncryptionMethod()); } StringBuilder builder = new StringBuilder(encodedJWEHeader) .append('.') .append('.').append(Base64.getUrlEncoder().encodeToString(iv)) .append('.').append(Base64.getUrlEncoder().encodeToString(authCipherText.getCipherText())) .append('.').append(Base64.getUrlEncoder().encodeToString(authCipherText.getAuthenticationTag())); return builder.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy