01: package org.bouncycastle.asn1.ntt;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04:
05: /**
06: * From RFC 3657
07: */
08: public interface NTTObjectIdentifiers {
09: public static final DERObjectIdentifier id_camellia128_cbc = new DERObjectIdentifier(
10: "1.2.392.200011.61.1.1.1.2");
11: public static final DERObjectIdentifier id_camellia192_cbc = new DERObjectIdentifier(
12: "1.2.392.200011.61.1.1.1.3");
13: public static final DERObjectIdentifier id_camellia256_cbc = new DERObjectIdentifier(
14: "1.2.392.200011.61.1.1.1.4");
15:
16: public static final DERObjectIdentifier id_camellia128_wrap = new DERObjectIdentifier(
17: "1.2.392.200011.61.1.1.3.2");
18: public static final DERObjectIdentifier id_camellia192_wrap = new DERObjectIdentifier(
19: "1.2.392.200011.61.1.1.3.3");
20: public static final DERObjectIdentifier id_camellia256_wrap = new DERObjectIdentifier(
21: "1.2.392.200011.61.1.1.3.4");
22: }
|