// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package org.apache.commons.codec.digest; public final class HmacAlgorithms extends Enum { private static final HmacAlgorithms $VALUES[]; public static final HmacAlgorithms HMAC_MD5; public static final HmacAlgorithms HMAC_SHA_1; public static final HmacAlgorithms HMAC_SHA_256; public static final HmacAlgorithms HMAC_SHA_384; public static final HmacAlgorithms HMAC_SHA_512; private final String algorithm; private HmacAlgorithms(String s, int i, String s1) { super(s, i); algorithm = s1; } public static HmacAlgorithms valueOf(String s) { return (HmacAlgorithms)Enum.valueOf(org/apache/commons/codec/digest/HmacAlgorithms, s); } public static HmacAlgorithms[] values() { return (HmacAlgorithms[])$VALUES.clone(); } public String toString() { return algorithm; } static { HMAC_MD5 = new HmacAlgorithms("HMAC_MD5", 0, "HmacMD5"); HMAC_SHA_1 = new HmacAlgorithms("HMAC_SHA_1", 1, "HmacSHA1"); HMAC_SHA_256 = new HmacAlgorithms("HMAC_SHA_256", 2, "HmacSHA256"); HMAC_SHA_384 = new HmacAlgorithms("HMAC_SHA_384", 3, "HmacSHA384"); HMAC_SHA_512 = new HmacAlgorithms("HMAC_SHA_512", 4, "HmacSHA512"); $VALUES = (new HmacAlgorithms[] { HMAC_MD5, HMAC_SHA_1, HMAC_SHA_256, HMAC_SHA_384, HMAC_SHA_512 }); } }