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

com.bouncycastle.crypto.tls.SecurityParameters Maven / Gradle / Ivy

The newest version!
package com.bouncycastle.crypto.tls;

public class SecurityParameters
{
    byte[] clientRandom = null;
    byte[] serverRandom = null;
    byte[] masterSecret = null;

    public byte[] getClientRandom()
    {
        return clientRandom;
    }

    public byte[] getServerRandom()
    {
        return serverRandom;
    }

    public byte[] getMasterSecret()
    {
        return masterSecret;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy