blob: b2c05e7ea5bdd3006059085835dc02ea3ebc5a9b [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../../jacoco-resources/report.gif" type="image/gif"/><title>HashRequest.java</title><link rel="stylesheet" href="../../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../../index.html" class="el_report">Apache Shiro :: All (aggregate jar)</a> &gt; <a href="../index.html" class="el_bundle">shiro-crypto-hash</a> &gt; <a href="index.source.html" class="el_package">org.apache.shiro.crypto.hash</a> &gt; <span class="el_source">HashRequest.java</span></div><h1>HashRequest.java</h1><pre class="source lang-java linenums">/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* &quot;License&quot;); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* &quot;AS IS&quot; 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 org.apache.shiro.crypto.hash;
import org.apache.shiro.util.ByteSource;
/**
* A {@code HashRequest} is composed of data that will be used by a {@link HashService} to compute a hash (aka
* 'digest'). While you can instantiate a concrete {@code HashRequest} class directly, most will find using the
* {@link HashRequest.Builder} more convenient.
*
* @see HashRequest.Builder
* @since 1.2
*/
public interface HashRequest {
/**
* Returns the source data that will be hashed by a {@link HashService}. For example, this might be a
* {@code ByteSource} representation of a password, or file, etc.
*
* @return the source data that will be hashed by a {@link HashService}.
*/
ByteSource getSource();
/**
* Returns a salt to be used by the {@link HashService} during hash computation, or {@code null} if no salt is
* provided as part of the request.
* &lt;p/&gt;
* Note that a {@code null} value does not necessarily mean a salt won't be used at all - it just
* means that the request didn't include one. The servicing {@link HashService} is free to provide a salting
* strategy for a request, even if the request did not specify one.
*
* @return a salt to be used by the {@link HashService} during hash computation, or {@code null} if no salt is
* provided as part of the request.
*/
ByteSource getSalt();
/**
* Returns the number of requested hash iterations to be performed when computing the final {@code Hash} result.
* A non-positive (0 or less) indicates that the {@code HashService}'s default iteration configuration should
* be used. A positive value overrides the {@code HashService}'s configuration for a single request.
* &lt;p/&gt;
* Note that a {@code HashService} is free to ignore this number if it determines the number is not sufficient
* to meet a desired level of security.
*
* @return the number of requested hash iterations to be performed when computing the final {@code Hash} result.
*/
int getIterations();
/**
* Returns the name of the hash algorithm the {@code HashService} should use when computing the {@link Hash}, or
* {@code null} if the default algorithm configuration of the {@code HashService} should be used. A non-null value
* overrides the {@code HashService}'s configuration for a single request.
* &lt;p/&gt;
* Note that a {@code HashService} is free to ignore this value if it determines that the algorithm is not
* sufficient to meet a desired level of security.
*
* @return the name of the hash algorithm the {@code HashService} should use when computing the {@link Hash}, or
* {@code null} if the default algorithm configuration of the {@code HashService} should be used.
*/
String getAlgorithmName();
/**
* A Builder class representing the Builder design pattern for constructing {@link HashRequest} instances.
*
* @see SimpleHashRequest
* @since 1.2
*/
public static class Builder {
private ByteSource source;
private ByteSource salt;
private int iterations;
private String algorithmName;
/**
* Default no-arg constructor.
*/
<span class="fc" id="L95"> public Builder() {</span>
<span class="fc" id="L96"> this.iterations = 0;</span>
<span class="fc" id="L97"> }</span>
/**
* Sets the source data that will be hashed by a {@link HashService}. For example, this might be a
* {@code ByteSource} representation of a password, or file, etc.
*
* @param source the source data that will be hashed by a {@link HashService}.
* @return this {@code Builder} instance for method chaining.
* @see HashRequest#getSource()
* @see #setSource(Object)
*/
public Builder setSource(ByteSource source) {
<span class="fc" id="L109"> this.source = source;</span>
<span class="fc" id="L110"> return this;</span>
}
/**
* Sets the source data that will be hashed by a {@link HashService}.
* &lt;p/&gt;
* This is a convenience alternative to {@link #setSource(ByteSource)}: it will attempt to convert the
* argument into a {@link ByteSource} instance using Shiro's default conversion heuristics
* (as defined by {@link ByteSource.Util#isCompatible(Object) ByteSource.Util.isCompatible}. If the object
* cannot be heuristically converted to a {@code ByteSource}, an {@code IllegalArgumentException} will be
* thrown.
*
* @param source the byte-backed source data that will be hashed by a {@link HashService}.
* @return this {@code Builder} instance for method chaining.
* @throws IllegalArgumentException if the argument cannot be heuristically converted to a {@link ByteSource}
* instance.
* @see HashRequest#getSource()
* @see #setSource(ByteSource)
*/
public Builder setSource(Object source) throws IllegalArgumentException {
<span class="fc" id="L130"> this.source = ByteSource.Util.bytes(source);</span>
<span class="fc" id="L131"> return this;</span>
}
/**
* Sets a salt to be used by the {@link HashService} during hash computation.
* &lt;p/&gt;
* &lt;b&gt;NOTE&lt;/b&gt;: not calling this method does not necessarily mean a salt won't be used at all - it just
* means that the request didn't include a salt. The servicing {@link HashService} is free to provide a salting
* strategy for a request, even if the request did not specify one. You can always check the result
* {@code Hash} {@link Hash#getSalt() getSalt()} method to see what the actual
* salt was (if any), which may or may not match this request salt.
*
* @param salt a salt to be used by the {@link HashService} during hash computation
* @return this {@code Builder} instance for method chaining.
* @see HashRequest#getSalt()
*/
public Builder setSalt(ByteSource salt) {
<span class="fc" id="L148"> this.salt = salt;</span>
<span class="fc" id="L149"> return this;</span>
}
/**
* Sets a salt to be used by the {@link HashService} during hash computation.
* &lt;p/&gt;
* This is a convenience alternative to {@link #setSalt(ByteSource)}: it will attempt to convert the
* argument into a {@link ByteSource} instance using Shiro's default conversion heuristics
* (as defined by {@link ByteSource.Util#isCompatible(Object) ByteSource.Util.isCompatible}. If the object
* cannot be heuristically converted to a {@code ByteSource}, an {@code IllegalArgumentException} will be
* thrown.
*
* @param salt a salt to be used by the {@link HashService} during hash computation.
* @return this {@code Builder} instance for method chaining.
* @throws IllegalArgumentException if the argument cannot be heuristically converted to a {@link ByteSource}
* instance.
* @see #setSalt(ByteSource)
* @see HashRequest#getSalt()
*/
public Builder setSalt(Object salt) throws IllegalArgumentException {
<span class="fc" id="L169"> this.salt = ByteSource.Util.bytes(salt);</span>
<span class="fc" id="L170"> return this;</span>
}
/**
* Sets the number of requested hash iterations to be performed when computing the final {@code Hash} result.
* Not calling this method or setting a non-positive value (0 or less) indicates that the {@code HashService}'s
* default iteration configuration should be used. A positive value overrides the {@code HashService}'s
* configuration for a single request.
* &lt;p/&gt;
* Note that a {@code HashService} is free to ignore this number if it determines the number is not sufficient
* to meet a desired level of security. You can always check the result
* {@code Hash} {@link Hash#getIterations() getIterations()} method to see what the actual
* number of iterations was, which may or may not match this request salt.
*
* @param iterations the number of requested hash iterations to be performed when computing the final
* {@code Hash} result.
* @return this {@code Builder} instance for method chaining.
* @see HashRequest#getIterations()
*/
public Builder setIterations(int iterations) {
<span class="fc" id="L190"> this.iterations = iterations;</span>
<span class="fc" id="L191"> return this;</span>
}
/**
* Sets the name of the hash algorithm the {@code HashService} should use when computing the {@link Hash}.
* Not calling this method or setting it to {@code null} indicates the the default algorithm configuration of
* the {@code HashService} should be used. A non-null value
* overrides the {@code HashService}'s configuration for a single request.
* &lt;p/&gt;
* Note that a {@code HashService} is free to ignore this value if it determines that the algorithm is not
* sufficient to meet a desired level of security. You can always check the result
* {@code Hash} {@link Hash#getAlgorithmName() getAlgorithmName()} method to see what the actual
* algorithm was, which may or may not match this request salt.
*
* @param algorithmName the name of the hash algorithm the {@code HashService} should use when computing the
* {@link Hash}, or {@code null} if the default algorithm configuration of the
* {@code HashService} should be used.
* @return this {@code Builder} instance for method chaining.
* @see HashRequest#getAlgorithmName()
*/
public Builder setAlgorithmName(String algorithmName) {
<span class="fc" id="L212"> this.algorithmName = algorithmName;</span>
<span class="fc" id="L213"> return this;</span>
}
/**
* Builds a {@link HashRequest} instance reflecting the specified configuration.
*
* @return a {@link HashRequest} instance reflecting the specified configuration.
*/
public HashRequest build() {
<span class="fc" id="L222"> return new SimpleHashRequest(this.algorithmName, this.source, this.salt, this.iterations);</span>
}
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.7.201606060606</span></div></body></html>