// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.operator;

import java.util.Collections;
import org.bouncycastle.asn1.cryptopro.CryptoProObjectIdentifiers;
import org.bouncycastle.asn1.oiw.OIWObjectIdentifiers;
import org.bouncycastle.asn1.kisa.KISAObjectIdentifiers;
import org.bouncycastle.asn1.ntt.NTTObjectIdentifiers;
import org.bouncycastle.asn1.nist.NISTObjectIdentifiers;
import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
import org.bouncycastle.util.Integers;
import java.util.HashMap;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
import java.util.Map;

public class DefaultSecretKeySizeProvider implements SecretKeySizeProvider
{
    public static final SecretKeySizeProvider INSTANCE;
    private static final Map KEY_SIZES;
    
    @Override
    public int getKeySize(final AlgorithmIdentifier algorithmIdentifier) {
        final int keySize = this.getKeySize(algorithmIdentifier.getAlgorithm());
        if (keySize > 0) {
            return keySize;
        }
        return -1;
    }
    
    @Override
    public int getKeySize(final ASN1ObjectIdentifier asn1ObjectIdentifier) {
        final Integer n = DefaultSecretKeySizeProvider.KEY_SIZES.get(asn1ObjectIdentifier);
        if (n != null) {
            return n;
        }
        return -1;
    }
    
    static {
        INSTANCE = new DefaultSecretKeySizeProvider();
        final HashMap m = new HashMap();
        m.put(new ASN1ObjectIdentifier("1.2.840.113533.7.66.10"), Integers.valueOf(128));
        m.put(PKCSObjectIdentifiers.des_EDE3_CBC, Integers.valueOf(192));
        m.put(PKCSObjectIdentifiers.id_alg_CMS3DESwrap, Integers.valueOf(192));
        m.put(PKCSObjectIdentifiers.pbeWithSHA1AndDES_CBC, Integers.valueOf(64));
        m.put(PKCSObjectIdentifiers.pbeWithMD5AndDES_CBC, Integers.valueOf(64));
        m.put(NISTObjectIdentifiers.id_aes128_CBC, Integers.valueOf(128));
        m.put(NISTObjectIdentifiers.id_aes192_CBC, Integers.valueOf(192));
        m.put(NISTObjectIdentifiers.id_aes256_CBC, Integers.valueOf(256));
        m.put(NISTObjectIdentifiers.id_aes128_GCM, Integers.valueOf(128));
        m.put(NISTObjectIdentifiers.id_aes192_GCM, Integers.valueOf(192));
        m.put(NISTObjectIdentifiers.id_aes256_GCM, Integers.valueOf(256));
        m.put(NISTObjectIdentifiers.id_aes128_CCM, Integers.valueOf(128));
        m.put(NISTObjectIdentifiers.id_aes192_CCM, Integers.valueOf(192));
        m.put(NISTObjectIdentifiers.id_aes256_CCM, Integers.valueOf(256));
        m.put(NISTObjectIdentifiers.id_aes128_wrap, Integers.valueOf(128));
        m.put(NISTObjectIdentifiers.id_aes192_wrap, Integers.valueOf(192));
        m.put(NISTObjectIdentifiers.id_aes256_wrap, Integers.valueOf(256));
        m.put(NISTObjectIdentifiers.id_aes128_wrap_pad, Integers.valueOf(128));
        m.put(NISTObjectIdentifiers.id_aes192_wrap_pad, Integers.valueOf(192));
        m.put(NISTObjectIdentifiers.id_aes256_wrap_pad, Integers.valueOf(256));
        m.put(NTTObjectIdentifiers.id_camellia128_cbc, Integers.valueOf(128));
        m.put(NTTObjectIdentifiers.id_camellia192_cbc, Integers.valueOf(192));
        m.put(NTTObjectIdentifiers.id_camellia256_cbc, Integers.valueOf(256));
        m.put(NTTObjectIdentifiers.id_camellia128_wrap, Integers.valueOf(128));
        m.put(NTTObjectIdentifiers.id_camellia192_wrap, Integers.valueOf(192));
        m.put(NTTObjectIdentifiers.id_camellia256_wrap, Integers.valueOf(256));
        m.put(KISAObjectIdentifiers.id_seedCBC, Integers.valueOf(128));
        m.put(OIWObjectIdentifiers.desCBC, Integers.valueOf(64));
        m.put(CryptoProObjectIdentifiers.gostR28147_gcfb, Integers.valueOf(256));
        KEY_SIZES = Collections.unmodifiableMap((Map<?, ?>)m);
    }
}
