org.bouncycastle.jsse.BCSNIServerName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-fips Show documentation
Show all versions of bctls-fips Show documentation
The Bouncy Castle Java APIs for the TLS, including a JSSE provider. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.
package org.bouncycastle.jsse;
import org.bouncycastle.tls.NameType;
import org.bouncycastle.tls.TlsUtils;
import org.bouncycastle.util.Arrays;
import org.bouncycastle.util.encoders.Hex;
public abstract class BCSNIServerName
{
private final int nameType;
private final byte[] encoded;
protected BCSNIServerName(int nameType, byte[] encoded)
{
if (!TlsUtils.isValidUint8(nameType))
{
throw new IllegalArgumentException("'nameType' should be between 0 and 255");
}
if (encoded == null)
{
throw new NullPointerException("'encoded' cannot be null");
}
this.nameType = nameType;
this.encoded = Arrays.clone(encoded);
}
public final int getType()
{
return nameType;
}
public final byte[] getEncoded()
{
return (byte[])Arrays.clone(encoded);
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof BCSNIServerName))
{
return false;
}
BCSNIServerName other = (BCSNIServerName)obj;
return nameType == other.nameType
&& Arrays.areEqual(encoded, other.encoded);
}
@Override
public int hashCode()
{
return nameType ^ Arrays.hashCode(encoded);
}
@Override
public String toString()
{
return "{type=" + NameType.getText((short)nameType) + ", value=" + Hex.toHexString(encoded) + "}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy