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

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

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

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