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

CMSSecureReadable.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: 620d12367e092930903b28bbd274a45659349210 (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.cms;

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

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