org.bouncycastle.tls.crypto.CryptoHashAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
The newest version!
package org.bouncycastle.tls.crypto;
public abstract class CryptoHashAlgorithm
{
public static final int md5 = 1;
public static final int sha1 = 2;
public static final int sha224 = 3;
public static final int sha256 = 4;
public static final int sha384 = 5;
public static final int sha512 = 6;
public static final int sm3 = 7;
}