1 package org.bouncycastle.asn1.oiw; 2 3 import org.bouncycastle.asn1.ASN1ObjectIdentifier; 4 5 /** 6 * OIW organization's OIDs: 7 * <p> 8 * id-SHA1 OBJECT IDENTIFIER ::= 9 * {iso(1) identified-organization(3) oiw(14) secsig(3) algorithms(2) 26 } 10 */ 11 public interface OIWObjectIdentifiers 12 { 13 /** OID: 1.3.14.3.2.2 */ 14 static final ASN1ObjectIdentifier md4WithRSA = new ASN1ObjectIdentifier("1.3.14.3.2.2"); 15 /** OID: 1.3.14.3.2.3 */ 16 static final ASN1ObjectIdentifier md5WithRSA = new ASN1ObjectIdentifier("1.3.14.3.2.3"); 17 /** OID: 1.3.14.3.2.4 */ 18 static final ASN1ObjectIdentifier md4WithRSAEncryption = new ASN1ObjectIdentifier("1.3.14.3.2.4"); 19 20 /** OID: 1.3.14.3.2.6 */ 21 static final ASN1ObjectIdentifier desECB = new ASN1ObjectIdentifier("1.3.14.3.2.6"); 22 /** OID: 1.3.14.3.2.7 */ 23 static final ASN1ObjectIdentifier desCBC = new ASN1ObjectIdentifier("1.3.14.3.2.7"); 24 /** OID: 1.3.14.3.2.8 */ 25 static final ASN1ObjectIdentifier desOFB = new ASN1ObjectIdentifier("1.3.14.3.2.8"); 26 /** OID: 1.3.14.3.2.9 */ 27 static final ASN1ObjectIdentifier desCFB = new ASN1ObjectIdentifier("1.3.14.3.2.9"); 28 29 /** OID: 1.3.14.3.2.17 */ 30 static final ASN1ObjectIdentifier desEDE = new ASN1ObjectIdentifier("1.3.14.3.2.17"); 31 32 /** OID: 1.3.14.3.2.26 */ 33 static final ASN1ObjectIdentifier idSHA1 = new ASN1ObjectIdentifier("1.3.14.3.2.26"); 34 35 /** OID: 1.3.14.3.2.27 */ 36 static final ASN1ObjectIdentifier dsaWithSHA1 = new ASN1ObjectIdentifier("1.3.14.3.2.27"); 37 38 /** OID: 1.3.14.3.2.29 */ 39 static final ASN1ObjectIdentifier sha1WithRSA = new ASN1ObjectIdentifier("1.3.14.3.2.29"); 40 41 /** 42 * <pre> 43 * ElGamal Algorithm OBJECT IDENTIFIER ::= 44 * {iso(1) identified-organization(3) oiw(14) dirservsig(7) algorithm(2) encryption(1) 1 } 45 * </pre> 46 * OID: 1.3.14.7.2.1.1 47 */ 48 static final ASN1ObjectIdentifier elGamalAlgorithm = new ASN1ObjectIdentifier("1.3.14.7.2.1.1"); 49 50 } 51