12 lines
324 B
Java
12 lines
324 B
Java
package org.bouncycastle.jcajce.provider.asymmetric.util;
|
|
|
|
import java.io.IOException;
|
|
import java.math.BigInteger;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public interface DSAEncoder {
|
|
BigInteger[] decode(byte[] bArr) throws IOException;
|
|
|
|
byte[] encode(BigInteger bigInteger, BigInteger bigInteger2) throws IOException;
|
|
}
|