/* * Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" file accompanying this file. This file 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.amazonaws.apigatewaydemo.helper; import javax.crypto.SecretKeyFactory; import javax.crypto.spec.PBEKeySpec; import java.security.NoSuchAlgorithmException; import java.security.SecureRandom; import java.security.spec.InvalidKeySpecException; import java.security.spec.KeySpec; import java.util.Arrays; /** * Simple helper to encrypt passwords using a randomly generated salt. Each password uses its own salt and it should * be saved in the data store with the user. *

* See Jeremiah Orr article on DZone for an in-depth explanation and example: https://dzone.com/articles/secure-password-storage-lots */ public class PasswordHelper { /** * Verifies a login attempt against a password from the data store * * @param attemptedPassword The unencrypted password used by the user when logging into the service * @param encryptedPassword The encrypted password from the data store * @param salt The salt for the encrypted password from the data store * @return True if the passwords match, false otherwise. * @throws NoSuchAlgorithmException * @throws InvalidKeySpecException */ public static boolean authenticate(String attemptedPassword, byte[] encryptedPassword, byte[] salt) throws NoSuchAlgorithmException, InvalidKeySpecException { // Encrypt the clear-text password using the same salt that was used to // encrypt the original password byte[] encryptedAttemptedPassword = getEncryptedPassword(attemptedPassword, salt); // Authentication succeeds if encrypted password that the user entered // is equal to the stored hash return Arrays.equals(encryptedPassword, encryptedAttemptedPassword); } /** * Encrypts the given password with a salt * * @param password The password string to be encrypted * @param salt A randomly generated salt for the password encryption * @return The byte[] containing the encrypted password * @throws NoSuchAlgorithmException * @throws InvalidKeySpecException */ public static byte[] getEncryptedPassword(String password, byte[] salt) throws NoSuchAlgorithmException, InvalidKeySpecException { String algorithm = "PBKDF2WithHmacSHA1"; int derivedKeyLength = 160; // The NIST recommends at least 1,000 iterations: // http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf int iterations = 20000; KeySpec spec = new PBEKeySpec(password.toCharArray(), salt, iterations, derivedKeyLength); SecretKeyFactory f = SecretKeyFactory.getInstance(algorithm); return f.generateSecret(spec).getEncoded(); } /** * Generates a random 8 byte salt using the SecureRandom with the SHA1PRNG * * @return The generated salt * @throws NoSuchAlgorithmException */ public static byte[] generateSalt() throws NoSuchAlgorithmException { SecureRandom random = SecureRandom.getInstance("SHA1PRNG"); byte[] salt = new byte[8]; random.nextBytes(salt); return salt; } }