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

PGPDataDecryptor.java « operator « openpgp « bouncycastle « org « java « main « src « pg - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f79640af39ff5f3e3e1af0988a974a8df3751d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.bouncycastle.openpgp.operator;

import java.io.InputStream;

public interface PGPDataDecryptor
{
    InputStream getInputStream(InputStream in);

    int getBlockSize();

    PGPDigestCalculator getIntegrityCalculator();
}