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

org.bouncycastle.tls.TlsServerContextImpl Maven / Gradle / Ivy

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

import org.bouncycastle.tls.crypto.TlsCrypto;

class TlsServerContextImpl
    extends AbstractTlsContext
    implements TlsServerContext
{
    TlsServerContextImpl(TlsCrypto crypto)
    {
        super(crypto, ConnectionEnd.server);
    }

    public boolean isServer()
    {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy