19 lines
351 B
Java
19 lines
351 B
Java
|
package org.bouncycastle.asn1;
|
||
|
|
||
|
import java.math.BigInteger;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class DEREnumerated extends ASN1Enumerated {
|
||
|
DEREnumerated(byte[] bArr) {
|
||
|
super(bArr);
|
||
|
}
|
||
|
|
||
|
public DEREnumerated(BigInteger bigInteger) {
|
||
|
super(bigInteger);
|
||
|
}
|
||
|
|
||
|
public DEREnumerated(int i) {
|
||
|
super(i);
|
||
|
}
|
||
|
}
|