org.bouncycastle.crypto.tls.MACAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-crypto Show documentation
Show all versions of gwt-crypto Show documentation
A GWT cryptography library ported from Legion of the Bouncy Castle.
The newest version!
package org.bouncycastle.crypto.tls;
/**
* RFC 2246
*
* Note that the values here are implementation-specific and arbitrary. It is recommended not to
* depend on the particular values (e.g. serialization).
*/
public class MACAlgorithm
{
public static final int _null = 0;
public static final int md5 = 1;
public static final int sha = 2;
/*
* RFC 5246
*/
public static final int hmac_md5 = md5;
public static final int hmac_sha1 = sha;
public static final int hmac_sha256 = 3;
public static final int hmac_sha384 = 4;
public static final int hmac_sha512 = 5;
}