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

org.bouncycastle.crypto.tls.MACAlgorithm Maven / Gradle / Ivy

Go to download

The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.4. Note: this package includes the NTRU encryption algorithms.

There is a newer version: 1.78.1
Show 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). * * @deprecated Migrate to the (D)TLS API in org.bouncycastle.tls (bctls jar). */ 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; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy