org.bouncycastle.crypto.tls.TlsClientContextImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package org.bouncycastle.crypto.tls;
import java.security.SecureRandom;
class TlsClientContextImpl implements TlsClientContext
{
private SecureRandom secureRandom;
private SecurityParameters securityParameters;
private Object userObject = null;
TlsClientContextImpl(SecureRandom secureRandom, SecurityParameters securityParameters)
{
this.secureRandom = secureRandom;
this.securityParameters = securityParameters;
}
public SecureRandom getSecureRandom()
{
return secureRandom;
}
public SecurityParameters getSecurityParameters()
{
return securityParameters;
}
public Object getUserObject()
{
return userObject;
}
public void setUserObject(Object userObject)
{
this.userObject = userObject;
}
}