Package org.apache.shiro.crypto.hash

Examples of org.apache.shiro.crypto.hash.Sha384Hash


     * Creates a new <em>uninitialized</em> {@link Sha384Hash Sha384Hash} instance, without it's byte array set.
     *
     * @return a new <em>uninitialized</em> {@link org.apache.shiro.crypto.hash.Sha384Hash Sha384Hash} instance, without it's byte array set.
     */
    protected AbstractHash newHashInstance() {
        return new Sha384Hash();
    }
View Full Code Here


    /**
     * This implementation merely returns
     * <code>new {@link Sha384Hash#Sha384Hash(Object, Object, int) Sha384Hash(credentials,salt,hashIterations)}</code>.
     */
    protected Hash hashProvidedCredentials(Object credentials, Object salt, int hashIterations) {
        return new Sha384Hash(credentials, salt, hashIterations);
    }
View Full Code Here

    public Class<? extends HashedCredentialsMatcher> getMatcherClass() {
        return Sha384CredentialsMatcher.class;
    }

    public AbstractHash hash(Object credentials) {
        return new Sha384Hash(credentials);
    }
View Full Code Here

    public Class<? extends HashedCredentialsMatcher> getMatcherClass() {
        return Sha384CredentialsMatcher.class;
    }

    public AbstractHash hash(Object credentials) {
        return new Sha384Hash(credentials);
    }
View Full Code Here

TOP

Related Classes of org.apache.shiro.crypto.hash.Sha384Hash

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.