org.bouncycastle.tls.BasicTlsSRPIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
The newest version!
package org.bouncycastle.tls;
import org.bouncycastle.util.Arrays;
import org.bouncycastle.util.Strings;
/**
* A basic SRP Identity holder.
*/
public class BasicTlsSRPIdentity
implements TlsSRPIdentity
{
protected byte[] identity;
protected byte[] password;
public BasicTlsSRPIdentity(byte[] identity, byte[] password)
{
this.identity = Arrays.clone(identity);
this.password = Arrays.clone(password);
}
public BasicTlsSRPIdentity(String identity, String password)
{
this.identity = Strings.toUTF8ByteArray(identity);
this.password = Strings.toUTF8ByteArray(password);
}
public byte[] getSRPIdentity()
{
return identity;
}
public byte[] getSRPPassword()
{
return password;
}
}