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