ASN1ObjectParser.java :  » android-platform-external » bouncycastle » org » bouncycastle » asn1 » Android Open Source

Android Open Source » android platform external » bouncycastle 
bouncycastle » org » bouncycastle » asn1 » ASN1ObjectParser.java
package org.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);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.