aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/asn1/oiw/OIWObjectIdentifiers.java
blob: 18bf44b28c9ed713914dceb29427b3da7b4e53e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package org.spongycastle.asn1.oiw;

import org.spongycastle.asn1.ASN1ObjectIdentifier;

/**
 * OIW organization's OIDs:
 * <p>
 * id-SHA1 OBJECT IDENTIFIER ::=    
 *   {iso(1) identified-organization(3) oiw(14) secsig(3) algorithms(2) 26 }
 */
public interface OIWObjectIdentifiers
{
    /** OID: 1.3.14.3.2.2 */
    static final ASN1ObjectIdentifier    md4WithRSA              = new ASN1ObjectIdentifier("1.3.14.3.2.2");
    /** OID: 1.3.14.3.2.3 */
    static final ASN1ObjectIdentifier    md5WithRSA              = new ASN1ObjectIdentifier("1.3.14.3.2.3");
    /** OID: 1.3.14.3.2.4 */
    static final ASN1ObjectIdentifier    md4WithRSAEncryption    = new ASN1ObjectIdentifier("1.3.14.3.2.4");
    
    /** OID: 1.3.14.3.2.6 */
    static final ASN1ObjectIdentifier    desECB                  = new ASN1ObjectIdentifier("1.3.14.3.2.6");
    /** OID: 1.3.14.3.2.7 */
    static final ASN1ObjectIdentifier    desCBC                  = new ASN1ObjectIdentifier("1.3.14.3.2.7");
    /** OID: 1.3.14.3.2.8 */
    static final ASN1ObjectIdentifier    desOFB                  = new ASN1ObjectIdentifier("1.3.14.3.2.8");
    /** OID: 1.3.14.3.2.9 */
    static final ASN1ObjectIdentifier    desCFB                  = new ASN1ObjectIdentifier("1.3.14.3.2.9");

    /** OID: 1.3.14.3.2.17 */
    static final ASN1ObjectIdentifier    desEDE                  = new ASN1ObjectIdentifier("1.3.14.3.2.17");
    
    /** OID: 1.3.14.3.2.26 */
    static final ASN1ObjectIdentifier    idSHA1                  = new ASN1ObjectIdentifier("1.3.14.3.2.26");

    /** OID: 1.3.14.3.2.27 */
    static final ASN1ObjectIdentifier    dsaWithSHA1             = new ASN1ObjectIdentifier("1.3.14.3.2.27");

    /** OID: 1.3.14.3.2.29 */
    static final ASN1ObjectIdentifier    sha1WithRSA             = new ASN1ObjectIdentifier("1.3.14.3.2.29");
    
    /**
     * <pre>
     * ElGamal Algorithm OBJECT IDENTIFIER ::=    
     *   {iso(1) identified-organization(3) oiw(14) dirservsig(7) algorithm(2) encryption(1) 1 }
     * </pre>
     * OID: 1.3.14.7.2.1.1
     */
    static final ASN1ObjectIdentifier    elGamalAlgorithm        = new ASN1ObjectIdentifier("1.3.14.7.2.1.1");

}