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

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

Go to download

The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up.

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

import java.io.IOException;

/**
 * A temporary class to wrap old CertificateVerifyer stuff for new TlsAuthentication
 *
 * @deprecated
 */
public class LegacyTlsAuthentication
    extends ServerOnlyTlsAuthentication
{
    protected CertificateVerifyer verifyer;

    public LegacyTlsAuthentication(CertificateVerifyer verifyer)
    {
        this.verifyer = verifyer;
    }

    public void notifyServerCertificate(Certificate serverCertificate)
        throws IOException
    {
        if (!this.verifyer.isValid(serverCertificate.getCertificateList()))
        {
            throw new TlsFatalAlert(AlertDescription.user_canceled);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy