org.spongycastle.tls.SessionID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk15on Show documentation
Show all versions of bctls-jdk15on Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.tls;
import org.spongycastle.util.Arrays;
import org.spongycastle.util.encoders.Hex;
public final class SessionID
implements Comparable
{
private final byte[] id;
public SessionID(byte[] id)
{
this.id = Arrays.clone(id);
}
public int compareTo(Object o)
{
return Arrays.compareUnsigned(id, ((SessionID)o).id);
}
public boolean equals(Object obj)
{
if (!(obj instanceof SessionID))
{
return false;
}
SessionID other = (SessionID)obj;
return Arrays.areEqual(id, other.id);
}
public byte[] getBytes()
{
return Arrays.clone(id);
}
public int hashCode()
{
return Arrays.hashCode(id);
}
public String toString()
{
return Hex.toHexString(id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy