17 lines
398 B
Java
17 lines
398 B
Java
package org.bouncycastle.asn1;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class DERObjectIdentifier extends ASN1ObjectIdentifier {
|
|
DERObjectIdentifier(byte[] bArr) {
|
|
super(bArr);
|
|
}
|
|
|
|
DERObjectIdentifier(ASN1ObjectIdentifier aSN1ObjectIdentifier, String str) {
|
|
super(aSN1ObjectIdentifier, str);
|
|
}
|
|
|
|
public DERObjectIdentifier(String str) {
|
|
super(str);
|
|
}
|
|
}
|