Example usage for org.apache.shiro.crypto.hash ConfigurableHashService setPrivateSalt

List of usage examples for org.apache.shiro.crypto.hash ConfigurableHashService setPrivateSalt

Introduction

In this page you can find the example usage for org.apache.shiro.crypto.hash ConfigurableHashService setPrivateSalt.

Prototype

void setPrivateSalt(ByteSource privateSalt);

Source Link

Document

Sets the 'private' (internal) salt to be paired with a 'public' (random or supplied) salt during hash computation.

Usage

From source file:org.jasig.cas.adaptors.jdbc.QueryAndEncodeDatabaseAuthenticationHandler.java

License:Apache License

/**
 * Digest encoded password.//from w  ww.j  av a2s  .co m
 *
 * @param encodedPassword the encoded password
 * @param values the values retrieved from database
 * @return the digested password
 */
protected String digestEncodedPassword(final String encodedPassword, final Map<String, Object> values) {
    final ConfigurableHashService hashService = new DefaultHashService();

    if (StringUtils.isNotBlank(this.staticSalt)) {
        hashService.setPrivateSalt(ByteSource.Util.bytes(this.staticSalt));
    }
    hashService.setHashAlgorithmName(this.algorithmName);

    Long numOfIterations = this.numberOfIterations;
    if (values.containsKey(this.numberOfIterationsFieldName)) {
        final String longAsStr = values.get(this.numberOfIterationsFieldName).toString();
        numOfIterations = Long.valueOf(longAsStr);
    }

    hashService.setHashIterations(numOfIterations.intValue());
    if (!values.containsKey(this.saltFieldName)) {
        throw new RuntimeException("Specified field name for salt does not exist in the results");
    }

    final String dynaSalt = values.get(this.saltFieldName).toString();
    final HashRequest request = new HashRequest.Builder().setSalt(dynaSalt).setSource(encodedPassword).build();
    return hashService.computeHash(request).toHex();
}