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

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

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

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