21 lines
1.4 KiB
Java
21 lines
1.4 KiB
Java
|
package org.bouncycastle.asn1.oiw;
|
||
|
|
||
|
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
|
||
|
import org.jmrtd.lds.SignedDataUtil;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface OIWObjectIdentifiers {
|
||
|
public static final ASN1ObjectIdentifier md4WithRSA = new ASN1ObjectIdentifier("1.3.14.3.2.2");
|
||
|
public static final ASN1ObjectIdentifier md5WithRSA = new ASN1ObjectIdentifier("1.3.14.3.2.3");
|
||
|
public static final ASN1ObjectIdentifier md4WithRSAEncryption = new ASN1ObjectIdentifier("1.3.14.3.2.4");
|
||
|
public static final ASN1ObjectIdentifier desECB = new ASN1ObjectIdentifier("1.3.14.3.2.6");
|
||
|
public static final ASN1ObjectIdentifier desCBC = new ASN1ObjectIdentifier("1.3.14.3.2.7");
|
||
|
public static final ASN1ObjectIdentifier desOFB = new ASN1ObjectIdentifier("1.3.14.3.2.8");
|
||
|
public static final ASN1ObjectIdentifier desCFB = new ASN1ObjectIdentifier("1.3.14.3.2.9");
|
||
|
public static final ASN1ObjectIdentifier desEDE = new ASN1ObjectIdentifier("1.3.14.3.2.17");
|
||
|
public static final ASN1ObjectIdentifier idSHA1 = new ASN1ObjectIdentifier(SignedDataUtil.IEEE_P1363_SHA1_OID);
|
||
|
public static final ASN1ObjectIdentifier dsaWithSHA1 = new ASN1ObjectIdentifier("1.3.14.3.2.27");
|
||
|
public static final ASN1ObjectIdentifier sha1WithRSA = new ASN1ObjectIdentifier("1.3.14.3.2.29");
|
||
|
public static final ASN1ObjectIdentifier elGamalAlgorithm = new ASN1ObjectIdentifier("1.3.14.7.2.1.1");
|
||
|
}
|