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

net.jradius.tls.TlsSigner Maven / Gradle / Ivy

package net.jradius.tls;

import org.bouncycastle.crypto.CryptoException;
import org.bouncycastle.crypto.Signer;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;

interface TlsSigner
{
    byte[] calculateRawSignature(AsymmetricKeyParameter privateKey, byte[] md5andsha1)
        throws CryptoException;

    Signer createVerifyer(AsymmetricKeyParameter publicKey);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy