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

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

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

public class TlsKemConfig
{
    protected final int namedGroup;
    protected final boolean isServer;

    public TlsKemConfig(int namedGroup, boolean isServer)
    {
        this.namedGroup = namedGroup;
        this.isServer = isServer;
    }

    public int getNamedGroup()
    {
        return namedGroup;
    }

    public boolean isServer()
    {
        return isServer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy