what-the-bank/sources/org/bouncycastle/crypto/KeyParser.java

11 lines
296 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto;
import java.io.IOException;
import java.io.InputStream;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
/* loaded from: classes6.dex */
public interface KeyParser {
AsymmetricKeyParameter readKey(InputStream inputStream) throws IOException;
}