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

org.bouncycastle.tls.crypto.Tls13Verifier Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.bouncycastle.tls.crypto;

import java.io.IOException;
import java.io.OutputStream;

/**
 * Base interface for a TLS 1.3 signature verifier.
 */
public interface Tls13Verifier
{
    OutputStream getOutputStream() throws IOException;

    boolean verifySignature(byte[] signature) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy