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

org.craftercms.commons.crypto.CryptoUtils Maven / Gradle / Ivy

There is a newer version: 4.1.8
Show newest version
/*
 * Copyright (C) 2007-2014 Crafter Software Corporation.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.craftercms.commons.crypto;

import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;

import org.apache.commons.lang3.StringUtils;

/**
 * Utility methods for encryption/decryption and message digest.
 *
 * @author Alfonso Vásquez
 */
public class CryptoUtils {

    public static final SecureRandom secureRandom = new SecureRandom();

    public static final String AES_CIPHER_ALGORITHM = "AES";
    public static final int AES_KEY_BYTE_SIZE = 16;
    public static final String DEFAULT_AES_CIPHER_TRANSFORMATION = "AES/CBC/PKCS5Padding";

    public static final String PASSWORD_SEP = "|";

    private CryptoUtils() {
    }

    /**
     * Generates a random array of bytes, using the singleton {@link java.security.SecureRandom}.
     *
     * @param size the size of the array
     * @return the generated array
     */
    public static byte[] generateRandomBytes(int size) {
        byte[] bytes = new byte[size];

        secureRandom.nextBytes(bytes);

        return bytes;
    }

    /**
     * Generates a random AES encryption key.
     *
     * @return the generated key
     */
    public static SecretKey generateAesKey() {
        try {
            return generateKey(AES_CIPHER_ALGORITHM);
        } catch (NoSuchAlgorithmException e) {
            // Should NEVER happen
            throw new IllegalStateException("JVM doesn't support " + AES_CIPHER_ALGORITHM, e);
        }
    }

    /**
     * Generates a random encryption key.
     *
     * @param cipherAlgorithm the cipher algorithm the key will be used with. Will determine the key size
     * @return the generated key
     */
    public static SecretKey generateKey(String cipherAlgorithm) throws NoSuchAlgorithmException {
        KeyGenerator keyGenerator = KeyGenerator.getInstance(cipherAlgorithm);
        keyGenerator.init(secureRandom);

        return keyGenerator.generateKey();
    }

    /**
     * Generates a random initialization vector for an AES cipher.
     *
     * @return the generated IV
     */
    public static byte[] generateAesIv() {
        return generateRandomBytes(AES_KEY_BYTE_SIZE);
    }

    /**
     * Hashes a password using a {@link org.craftercms.commons.crypto.SimpleDigest}. The generated salt is appended
     * to the password, using the {@link #PASSWORD_SEP}.
     *
     * @param clearPswd the password to hash, in clear
     * @return the hashed password + {@link #PASSWORD_SEP} + salt
     */
    public static String hashPassword(String clearPswd) {
        if (StringUtils.isNotEmpty(clearPswd)) {
            SimpleDigest digest = new SimpleDigest();
            String hashedPswd = digest.digestBase64(clearPswd);

            return hashedPswd + PASSWORD_SEP + digest.getBase64Salt();
        } else {
            return null;
        }
    }

    /**
     * Returns true if it's a password match, that is, if the hashed clear password equals the given hash.
     *
     * @param hashedPswdAndSalt the hashed password + {@link #PASSWORD_SEP} + salt, as returned by
     *                          {@link #hashPassword(String)}
     * @param clearPswd         the password that we're trying to match, in clear
     * @return if the password matches
     */
    public static boolean matchPassword(String hashedPswdAndSalt, String clearPswd) {
        if (StringUtils.isNotEmpty(hashedPswdAndSalt) && StringUtils.isNotEmpty(clearPswd)) {
            int idxOfSep = hashedPswdAndSalt.indexOf(PASSWORD_SEP);
            String storedHash = hashedPswdAndSalt.substring(0, idxOfSep);
            String salt = hashedPswdAndSalt.substring(idxOfSep + 1);
            SimpleDigest digest = new SimpleDigest();

            digest.setBase64Salt(salt);

            return storedHash.equals(digest.digestBase64(clearPswd));
        } else if (hashedPswdAndSalt == null && clearPswd == null) {
            return true;
        } else if (hashedPswdAndSalt.isEmpty() && clearPswd.isEmpty()) {
            return true;
        } else {
            return false;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy