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

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

Go to download

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

The newest version!
package org.bouncycastle.tls;

import java.math.BigInteger;

import org.bouncycastle.tls.crypto.TlsSRPConfig;

public class TlsSRPLoginParameters
{
    protected TlsSRPConfig srpConfig;
    protected BigInteger verifier;
    protected byte[] salt;

    public TlsSRPLoginParameters(TlsSRPConfig srpConfig, BigInteger verifier, byte[] salt)
    {
        this.srpConfig = srpConfig;
        this.verifier = verifier;
        this.salt = salt;
    }

    public TlsSRPConfig getConfig()
    {
        return srpConfig;
    }

    public byte[] getSalt()
    {
        return salt;
    }

    public BigInteger getVerifier()
    {
        return verifier;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy