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

SMIMEStreamingProcessor.java « smime « mail « spongycastle « org « java « main « src « mail - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e773232d901a5ad0e837d04eda7ebdadb7cde390 (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.mail.smime;

import java.io.IOException;
import java.io.OutputStream;

public interface SMIMEStreamingProcessor
{
    public void write(OutputStream out) 
        throws IOException;
}