001package org.apache.commons.ssl.org.bouncycastle.asn1.kisa; 002 003import org.apache.commons.ssl.org.bouncycastle.asn1.ASN1ObjectIdentifier; 004 005/** 006 * Korea Information Security Agency (KISA) 007 * ({iso(1) member-body(2) kr(410) kisa(200004)}) 008 * <p> 009 * See <a href="http://tools.ietf.org/html/rfc4010">RFC 4010</a> 010 * Use of the SEED Encryption Algorithm 011 * in Cryptographic Message Syntax (CMS), 012 * and <a href="http://tools.ietf.org/html/rfc4269">RFC 4269</a> 013 * The SEED Encryption Algorithm 014 */ 015public interface KISAObjectIdentifiers 016{ 017 /** RFC 4010, 4269: id-seedCBC; OID 1.2.410.200004.1.4 */ 018 static final ASN1ObjectIdentifier id_seedCBC = new ASN1ObjectIdentifier("1.2.410.200004.1.4"); 019 020 /** RFC 4269: id-seedMAC; OID 1.2.410.200004.1.7 */ 021 static final ASN1ObjectIdentifier id_seedMAC = new ASN1ObjectIdentifier("1.2.410.200004.1.7"); 022 023 /** RFC 4269: pbeWithSHA1AndSEED-CBC; OID 1.2.410.200004.1.15 */ 024 static final ASN1ObjectIdentifier pbeWithSHA1AndSEED_CBC = new ASN1ObjectIdentifier("1.2.410.200004.1.15"); 025 026 /** RFC 4010: id-npki-app-cmsSeed-wrap; OID 1.2.410.200004.7.1.1.1 */ 027 static final ASN1ObjectIdentifier id_npki_app_cmsSeed_wrap = new ASN1ObjectIdentifier("1.2.410.200004.7.1.1.1"); 028 029 /** RFC 4010: SeedEncryptionAlgorithmInCMS; OID 1.2.840.113549.1.9.16.0.24 */ 030 static final ASN1ObjectIdentifier id_mod_cms_seed = new ASN1ObjectIdentifier("1.2.840.113549.1.9.16.0.24"); 031}