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

PGPContentSigner.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: 0427e813e7bc67bddc7558f633a83bb60880fb76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.bouncycastle.openpgp.operator;

import java.io.OutputStream;

public interface PGPContentSigner
{
    public OutputStream getOutputStream();

    byte[] getSignature();

    byte[] getDigest();

    int getType();

    int getHashAlgorithm();

    int getKeyAlgorithm();

    long getKeyID();
}