All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.openpgp.operator.PGPContentSigner Maven / Gradle / Ivy

package org.bouncycastle.openpgp.operator;

import java.io.OutputStream;

public interface PGPContentSigner
{
    OutputStream getOutputStream();

    byte[] getSignature();

    byte[] getDigest();

    int getType();

    int getHashAlgorithm();

    int getKeyAlgorithm();

    long getKeyID();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy