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

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

There is a newer version: 1.0.6
Show 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy