001package org.apache.commons.ssl.org.bouncycastle.asn1.ntt;
002
003import org.apache.commons.ssl.org.bouncycastle.asn1.ASN1ObjectIdentifier;
004
005/**
006 * From <a href="http://tools.ietf.org/html/rfc3657">RFC 3657</a>
007 * Use of the Camellia Encryption Algorithm
008 * in Cryptographic Message Syntax (CMS)
009 */
010public interface NTTObjectIdentifiers
011{
012    /** id-camellia128-cbc; OID 1.2.392.200011.61.1.1.1.2 */
013    static final ASN1ObjectIdentifier id_camellia128_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.2");
014    /** id-camellia192-cbc; OID 1.2.392.200011.61.1.1.1.3 */
015    static final ASN1ObjectIdentifier id_camellia192_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.3");
016    /** id-camellia256-cbc; OID 1.2.392.200011.61.1.1.1.4 */
017    static final ASN1ObjectIdentifier id_camellia256_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.4");
018
019    /** id-camellia128-wrap; OID 1.2.392.200011.61.1.1.3.2 */
020    static final ASN1ObjectIdentifier id_camellia128_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.2");
021    /** id-camellia192-wrap; OID 1.2.392.200011.61.1.1.3.3 */
022    static final ASN1ObjectIdentifier id_camellia192_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.3");
023    /** id-camellia256-wrap; OID 1.2.392.200011.61.1.1.3.4 */
024    static final ASN1ObjectIdentifier id_camellia256_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.4");
025}