Home | History | Annotate | Download | only in ntt
      1 package org.bouncycastle.asn1.ntt;
      2 
      3 import org.bouncycastle.asn1.ASN1ObjectIdentifier;
      4 
      5 /**
      6  * From <a href="http://tools.ietf.org/html/rfc3657">RFC 3657</a>
      7  * Use of the Camellia Encryption Algorithm
      8  * in Cryptographic Message Syntax (CMS)
      9  */
     10 public interface NTTObjectIdentifiers
     11 {
     12     /** id-camellia128-cbc; OID 1.2.392.200011.61.1.1.1.2 */
     13     static final ASN1ObjectIdentifier id_camellia128_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.2");
     14     /** id-camellia192-cbc; OID 1.2.392.200011.61.1.1.1.3 */
     15     static final ASN1ObjectIdentifier id_camellia192_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.3");
     16     /** id-camellia256-cbc; OID 1.2.392.200011.61.1.1.1.4 */
     17     static final ASN1ObjectIdentifier id_camellia256_cbc = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.1.4");
     18 
     19     /** id-camellia128-wrap; OID 1.2.392.200011.61.1.1.3.2 */
     20     static final ASN1ObjectIdentifier id_camellia128_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.2");
     21     /** id-camellia192-wrap; OID 1.2.392.200011.61.1.1.3.3 */
     22     static final ASN1ObjectIdentifier id_camellia192_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.3");
     23     /** id-camellia256-wrap; OID 1.2.392.200011.61.1.1.3.4 */
     24     static final ASN1ObjectIdentifier id_camellia256_wrap = new ASN1ObjectIdentifier("1.2.392.200011.61.1.1.3.4");
     25 }
     26