1 package org.bouncycastle.asn1.kisa; 2 3 import org.bouncycastle.asn1.ASN1ObjectIdentifier; 4 5 /** 6 * Korea Information Security Agency (KISA) 7 * ({iso(1) member-body(2) kr(410) kisa(200004)}) 8 * <p> 9 * See <a href="http://tools.ietf.org/html/rfc4010">RFC 4010</a> 10 * Use of the SEED Encryption Algorithm 11 * in Cryptographic Message Syntax (CMS), 12 * and <a href="http://tools.ietf.org/html/rfc4269">RFC 4269</a> 13 * The SEED Encryption Algorithm 14 */ 15 public interface KISAObjectIdentifiers 16 { 17 /** RFC 4010, 4269: id-seedCBC; OID 1.2.410.200004.1.4 */ 18 static final ASN1ObjectIdentifier id_seedCBC = new ASN1ObjectIdentifier("1.2.410.200004.1.4"); 19 20 /** RFC 4269: id-seedMAC; OID 1.2.410.200004.1.7 */ 21 static final ASN1ObjectIdentifier id_seedMAC = new ASN1ObjectIdentifier("1.2.410.200004.1.7"); 22 23 /** RFC 4269: pbeWithSHA1AndSEED-CBC; OID 1.2.410.200004.1.15 */ 24 static final ASN1ObjectIdentifier pbeWithSHA1AndSEED_CBC = new ASN1ObjectIdentifier("1.2.410.200004.1.15"); 25 26 /** RFC 4010: id-npki-app-cmsSeed-wrap; OID 1.2.410.200004.7.1.1.1 */ 27 static final ASN1ObjectIdentifier id_npki_app_cmsSeed_wrap = new ASN1ObjectIdentifier("1.2.410.200004.7.1.1.1"); 28 29 /** RFC 4010: SeedEncryptionAlgorithmInCMS; OID 1.2.840.113549.1.9.16.0.24 */ 30 static final ASN1ObjectIdentifier id_mod_cms_seed = new ASN1ObjectIdentifier("1.2.840.113549.1.9.16.0.24"); 31 } 32