01: package org.bouncycastle.asn1.oiw;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04:
05: public interface OIWObjectIdentifiers {
06: // id-SHA1 OBJECT IDENTIFIER ::=
07: // {iso(1) identified-organization(3) oiw(14) secsig(3) algorithms(2) 26 } //
08: static final DERObjectIdentifier md4WithRSA = new DERObjectIdentifier(
09: "1.3.14.3.2.2");
10: static final DERObjectIdentifier md5WithRSA = new DERObjectIdentifier(
11: "1.3.14.3.2.3");
12: static final DERObjectIdentifier md4WithRSAEncryption = new DERObjectIdentifier(
13: "1.3.14.3.2.4");
14:
15: static final DERObjectIdentifier desCBC = new DERObjectIdentifier(
16: "1.3.14.3.2.7");
17:
18: static final DERObjectIdentifier idSHA1 = new DERObjectIdentifier(
19: "1.3.14.3.2.26");
20:
21: static final DERObjectIdentifier dsaWithSHA1 = new DERObjectIdentifier(
22: "1.3.14.3.2.27");
23:
24: static final DERObjectIdentifier sha1WithRSA = new DERObjectIdentifier(
25: "1.3.14.3.2.29");
26:
27: // ElGamal Algorithm OBJECT IDENTIFIER ::=
28: // {iso(1) identified-organization(3) oiw(14) dirservsig(7) algorithm(2) encryption(1) 1 }
29: //
30: static final DERObjectIdentifier elGamalAlgorithm = new DERObjectIdentifier(
31: "1.3.14.7.2.1.1");
32:
33: }
|