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

TlsSignerCredentials.java « tls « crypto « bouncycastle « org « java « main « src - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0e5ac93b4d3796fd8f7d646af327e1d235bf5e4 (plain)
1
2
3
4
5
6
7
8
package org.bouncycastle.crypto.tls;

import java.io.IOException;

public interface TlsSignerCredentials extends TlsCredentials
{
    byte[] generateCertificateSignature(byte[] md5andsha1) throws IOException;
}