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

ASN1Generator.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: c5c087f619583b5d97c1cfde0207235ea2a06890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.spongycastle.asn1;

import java.io.OutputStream;

public abstract class ASN1Generator
{
    protected OutputStream _out;
    
    public ASN1Generator(OutputStream out)
    {
        _out = out;
    }
    
    public abstract OutputStream getRawOutputStream();
}