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

com.fitbur.bouncycastle.crypto.tls.LegacyTlsAuthentication Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.fitbur.bouncycastle.crypto.tls;

import java.io.IOException;

/**
 * A temporary class to wrap old CertificateVerifyer stuff for new TlsAuthentication
 *
 * @com.fitburprecated
 */
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