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

org.bouncycastle.jsse.BCExtendedSSLSession Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for TLS and DTLS, including a provider for the JSSE.

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

import java.util.Collections;
import java.util.List;

import javax.net.ssl.SSLSession;

public abstract class BCExtendedSSLSession implements SSLSession
{
    public abstract String[] getLocalSupportedSignatureAlgorithms();

    public abstract String[] getPeerSupportedSignatureAlgorithms();

    public List getRequestedServerNames()
    {
        throw new UnsupportedOperationException();
    }

    public List getStatusResponses()
    {
        return Collections.emptyList();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy