what-the-bank/sources/org/bouncycastle/asn1/DERObjectIdentifier.java

17 lines
398 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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);
}
}