mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 20:45:17 +00:00
11 lines
208 B
Java
11 lines
208 B
Java
package org.thoughtcrime.bouncycastle.asn1;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface ASN1ApplicationSpecificParser
|
|
extends DEREncodable
|
|
{
|
|
DEREncodable readObject()
|
|
throws IOException;
|
|
}
|