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

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

import java.io.IOException;
import java.io.InputStream;

interface CMSReadable
{
    public InputStream getInputStream()
        throws IOException, CMSException;
}