mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
19 lines
366 B
Java
19 lines
366 B
Java
package org.thoughtcrime.bouncycastle.asn1;
|
|
|
|
import java.io.InputStream;
|
|
|
|
/**
|
|
* @deprecated will be removed
|
|
*/
|
|
public class ASN1ObjectParser
|
|
{
|
|
ASN1StreamParser _aIn;
|
|
|
|
protected ASN1ObjectParser(
|
|
int baseTag,
|
|
int tagNumber,
|
|
InputStream contentStream)
|
|
{
|
|
_aIn = new ASN1StreamParser(contentStream);
|
|
}
|
|
}
|