Encryptor.java

  1. package no.nav.data.common.security;

  2. import org.springframework.security.crypto.encrypt.Encryptors;
  3. import org.springframework.security.crypto.keygen.KeyGenerators;
  4. import org.springframework.security.crypto.keygen.StringKeyGenerator;
  5. import org.springframework.util.Assert;

  6. public class Encryptor {

  7.     private final String key;
  8.     private static final StringKeyGenerator saltGenerator = KeyGenerators.string();
  9.     private static final int saltLength = saltGenerator.generateKey().length();

  10.     public Encryptor(String key) {
  11.         this.key = key;
  12.     }

  13.     public Enc encrypt(String text) {
  14.         String salt = saltGenerator.generateKey();
  15.         return new Enc(salt, Encryptors.text(key, salt).encrypt(text));
  16.     }

  17.     public String decrypt(String encryptedText) {
  18.         Assert.isTrue(encryptedText != null && encryptedText.length() > saltLength, "invalid encryptionText");
  19.         var enc = new Enc(encryptedText);
  20.         return Encryptors.text(key, enc.salt).decrypt(enc.cipher);
  21.     }

  22.     static String getSalt(String encryptedText) {
  23.         return encryptedText.substring(0, saltLength);
  24.     }

  25.     static String getCipher(String encryptedText) {
  26.         return encryptedText.substring(saltLength);
  27.     }

  28.     public record Enc(String salt, String cipher) {

  29.         public Enc(String saltedCipher) {
  30.             this(getSalt(saltedCipher), getCipher(saltedCipher));
  31.         }

  32.         public String saltedCipher() {
  33.             return salt + cipher;
  34.         }
  35.     }
  36. }