Searched defs:MAC (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DCryptoPrimitive.java57 MAC, enum constant in enum:CryptoPrimitive
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DMAC.java41 * This class computes the "Message Authentication Code" (MAC) for each
43 * provide integrity protection for SSL messages. The MAC is actually
47 * NOTE: MAC computation is the only place in the SSL protocol that the
54 final class MAC { class
56 final static MAC NULL = new MAC();
58 // Value of the null MAC is fixed
61 // internal identifier for the MAC algorithm
64 // stuff defined by the kind of MAC algorithm
70 // byte array containing the additional information we MAC i
86 private MAC() { method in class:MAC
96 MAC(MacAlg macAlg, ProtocolVersion protocolVersion, SecretKey key) method in class:MAC
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java493 private final static String MAC = "Mac"; field in class:SunPKCS11
532 d(MAC, "HmacMD5", P11MAC,
534 d(MAC, "HmacSHA1", P11MAC,
536 d(MAC, "HmacSHA256", P11MAC,
538 d(MAC, "HmacSHA384", P11MAC,
540 d(MAC, "HmacSHA512", P11MAC,
542 d(MAC, "SslMacMD5", P11MAC,
544 d(MAC, "SslMacSHA1", P11MAC,
946 } else if (type == MAC) {
1028 if ((type == CIP) || (type == MAC)) {
[all...]

Completed in 49 milliseconds