Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ASN1SequenceParser.java « asn1 « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2997acdcf8dc63538d17e4abb5ce2195dc9d3d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.spongycastle.asn1;

import java.io.IOException;

/**
 * A basic parser for a SEQUENCE object
 */
public interface ASN1SequenceParser
    extends ASN1Encodable, InMemoryRepresentable
{
    /**
     * Read the next object from the underlying object representing a SEQUENCE.
     *
     * @throws IOException for bad input stream.
     * @return the next object, null if we are at the end.
     */
    ASN1Encodable readObject()
        throws IOException;
}