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

org.wiztools.commons.DigestAlgorithm Maven / Gradle / Ivy

The newest version!
/*
 * Copyright WizTools.org
 * Licensed under the Apache License, Version 2.0:
 * http://www.apache.org/licenses/LICENSE-2.0
 */
package org.wiztools.commons;

/**
 * Digest Algorithm string used by Java Security.
 * @author subwiz
 */
public interface DigestAlgorithm {
    public String MD2 = "MD2";
    public String MD5 = "MD5";

    public String SHA_1 = "SHA-1";
    public String SHA_256 = "SHA-256";
    public String SHA_384 = "SHA-384";
    public String SHA_512 = "SHA-512";

    public String[] ALL = new String[]{MD2, MD5, SHA_1, SHA_256, SHA_384, SHA_512};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy