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

jakarta.security.enterprise.identitystore.Pbkdf2PasswordHash Maven / Gradle / Ivy

There is a newer version: 11.0.0-M2
Show newest version
/*
 * Copyright (c) 2015, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package jakarta.security.enterprise.identitystore;

/**
 * This interface represents the built-in {@code Pbkdf2PasswordHash} implementation.
 * 

* To use {@code Pbkdf2PasswordHash} with the built-in Database {@link IdentityStore}, * configure this interface type as the {@code hashAlgorithm} value * on the {@link DatabaseIdentityStoreDefinition} annotation. *

* To configure parameters for {@code Pbkdf2PasswordHash}, specify them as the * {@code hashAlgorithmParameters} value on the {@link DatabaseIdentityStoreDefinition} annotation. *

* The built-in implementation must support the following configurable parameters: *

Pbkdf2PasswordHash.Algorithm      // default "PBKDF2WithHmacSHA256"
Pbkdf2PasswordHash.Iterations     // default 2048, minimum 1024
Pbkdf2PasswordHash.SaltSizeBytes  // default 32, minimum 16
Pbkdf2PasswordHash.KeySizeBytes   // default 32, minimum 16
 * 
*

* And the following PBKDF2 algorithms: *

PBKDF2WithHmacSHA224
PBKDF2WithHmacSHA256
PBKDF2WithHmacSHA384
PBKDF2WithHmacSHA512
 * 
* Algorithm names are the string literal names documented for the corresponding algorithms by the * Java Cryptography Architecture Standard Algorithm Name Documentation. *

* The encoded format produced by {@link #generate(char[])}, and consumed by {@link #verify(char[], String)}, * is as follows: *

{@code :::}
 * 
* Where: *
    *
  • algorithm -- the algorithm used to generate the hash *
  • iterations -- the number of iterations used to generate the hash *
  • base64(salt) -- the salt used to generate the hash, base64-encoded *
  • base64(hash) -- the hash value, base64-encoded *
*

* Because the algorithm and the parameters used to generate the hash are stored with the hash, * the built-in {@code Pbkdf2PasswordHash} implementation can verify hashes generated using algorithm * and parameter values that differ from the currently configured values. This means the configuration * parameters can be changed without impacting the ability to verify existing password hashes. *

* (Password hashes generated using algorithms/parameters outside the range supported by * {@code Pbkdf2PasswordHash} cannot be verified.) * * @see DatabaseIdentityStoreDefinition#hashAlgorithm() * @see DatabaseIdentityStoreDefinition#hashAlgorithmParameters() */ public interface Pbkdf2PasswordHash extends PasswordHash { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy