01: package org.bouncycastle.jce.provider.symmetric;
02:
03: import org.bouncycastle.asn1.ntt.NTTObjectIdentifiers;
04:
05: import java.util.HashMap;
06:
07: public class CamelliaMappings extends HashMap {
08: public CamelliaMappings() {
09: put("AlgorithmParameters.CAMELLIA",
10: "org.bouncycastle.jce.provider.symmetric.Camellia$AlgParams");
11: put("Alg.Alias.AlgorithmParameters."
12: + NTTObjectIdentifiers.id_camellia128_cbc, "CAMELLIA");
13: put("Alg.Alias.AlgorithmParameters."
14: + NTTObjectIdentifiers.id_camellia192_cbc, "CAMELLIA");
15: put("Alg.Alias.AlgorithmParameters."
16: + NTTObjectIdentifiers.id_camellia256_cbc, "CAMELLIA");
17:
18: put("AlgorithmParameterGenerator.CAMELLIA",
19: "org.bouncycastle.jce.provider.symmetric.Camellia$AlgParamGen");
20: put("Alg.Alias.AlgorithmParameterGenerator."
21: + NTTObjectIdentifiers.id_camellia128_cbc, "CAMELLIA");
22: put("Alg.Alias.AlgorithmParameterGenerator."
23: + NTTObjectIdentifiers.id_camellia192_cbc, "CAMELLIA");
24: put("Alg.Alias.AlgorithmParameterGenerator."
25: + NTTObjectIdentifiers.id_camellia256_cbc, "CAMELLIA");
26:
27: put("Cipher.CAMELLIA",
28: "org.bouncycastle.jce.provider.symmetric.Camellia$ECB");
29: put("Cipher." + NTTObjectIdentifiers.id_camellia128_cbc,
30: "org.bouncycastle.jce.provider.symmetric.Camellia$CBC");
31: put("Cipher." + NTTObjectIdentifiers.id_camellia192_cbc,
32: "org.bouncycastle.jce.provider.symmetric.Camellia$CBC");
33: put("Cipher." + NTTObjectIdentifiers.id_camellia256_cbc,
34: "org.bouncycastle.jce.provider.symmetric.Camellia$CBC");
35:
36: put("Cipher.CAMELLIARFC3211WRAP",
37: "org.bouncycastle.jce.provider.symmetric.Camellia$RFC3211Wrap");
38: put("Cipher.CAMELLIAWRAP",
39: "org.bouncycastle.jce.provider.symmetric.Camellia$Wrap");
40: put("Alg.Alias.Cipher."
41: + NTTObjectIdentifiers.id_camellia128_wrap,
42: "CAMELLIAWRAP");
43: put("Alg.Alias.Cipher."
44: + NTTObjectIdentifiers.id_camellia192_wrap,
45: "CAMELLIAWRAP");
46: put("Alg.Alias.Cipher."
47: + NTTObjectIdentifiers.id_camellia256_wrap,
48: "CAMELLIAWRAP");
49:
50: put("KeyGenerator.CAMELLIA",
51: "org.bouncycastle.jce.provider.symmetric.Camellia$KeyGen");
52: put("KeyGenerator." + NTTObjectIdentifiers.id_camellia128_wrap,
53: "org.bouncycastle.jce.provider.symmetric.Camellia$KeyGen128");
54: put("KeyGenerator." + NTTObjectIdentifiers.id_camellia192_wrap,
55: "org.bouncycastle.jce.provider.symmetric.Camellia$KeyGen192");
56: put("KeyGenerator." + NTTObjectIdentifiers.id_camellia256_wrap,
57: "org.bouncycastle.jce.provider.symmetric.Camellia$KeyGen256");
58: put("KeyGenerator." + NTTObjectIdentifiers.id_camellia128_cbc,
59: "org.bouncycastle.jce.provider.symmetric.Camellia$KeyGen128");
60: put("KeyGenerator." + NTTObjectIdentifiers.id_camellia192_cbc,
61: "org.bouncycastle.jce.provider.symmetric.Camellia$KeyGen192");
62: put("KeyGenerator." + NTTObjectIdentifiers.id_camellia256_cbc,
63: "org.bouncycastle.jce.provider.symmetric.Camellia$KeyGen256");
64: }
65: }
|