org.bouncycastle.tls.SignatureAndHashAlgorithm 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.tls;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* RFC 5246 7.4.1.4.1
*/
public class SignatureAndHashAlgorithm
{
public static final SignatureAndHashAlgorithm ed25519 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.ed25519);
public static final SignatureAndHashAlgorithm ed448 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.ed448);
public static final SignatureAndHashAlgorithm rsa_pss_rsae_sha256 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.rsa_pss_rsae_sha256);
public static final SignatureAndHashAlgorithm rsa_pss_rsae_sha384 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.rsa_pss_rsae_sha384);
public static final SignatureAndHashAlgorithm rsa_pss_rsae_sha512 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.rsa_pss_rsae_sha512);
public static final SignatureAndHashAlgorithm rsa_pss_pss_sha256 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.rsa_pss_pss_sha256);
public static final SignatureAndHashAlgorithm rsa_pss_pss_sha384 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.rsa_pss_pss_sha384);
public static final SignatureAndHashAlgorithm rsa_pss_pss_sha512 = new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, SignatureAlgorithm.rsa_pss_pss_sha512);
public static SignatureAndHashAlgorithm getInstance(short hashAlgorithm, short signatureAlgorithm)
{
switch (hashAlgorithm)
{
case HashAlgorithm.Intrinsic:
return getInstanceIntrinsic(signatureAlgorithm);
default:
return new SignatureAndHashAlgorithm(hashAlgorithm, signatureAlgorithm);
}
}
public static SignatureAndHashAlgorithm getInstanceIntrinsic(short signatureAlgorithm)
{
switch (signatureAlgorithm)
{
case SignatureAlgorithm.ed25519: return ed25519;
case SignatureAlgorithm.ed448: return ed448;
case SignatureAlgorithm.rsa_pss_rsae_sha256: return rsa_pss_rsae_sha256;
case SignatureAlgorithm.rsa_pss_rsae_sha384: return rsa_pss_rsae_sha384;
case SignatureAlgorithm.rsa_pss_rsae_sha512: return rsa_pss_rsae_sha512;
case SignatureAlgorithm.rsa_pss_pss_sha256: return rsa_pss_pss_sha256;
case SignatureAlgorithm.rsa_pss_pss_sha384: return rsa_pss_pss_sha384;
case SignatureAlgorithm.rsa_pss_pss_sha512: return rsa_pss_pss_sha512;
default:
return new SignatureAndHashAlgorithm(HashAlgorithm.Intrinsic, signatureAlgorithm);
}
}
protected final short hash;
protected final short signature;
/**
* @param hash {@link HashAlgorithm}
* @param signature {@link SignatureAlgorithm}
*/
public SignatureAndHashAlgorithm(short hash, short signature)
{
/*
* TODO]tls] The TlsUtils methods are inlined here to avoid circular static initialization
* b/w these classes. We should refactor parts of TlsUtils into separate classes. e.g. the
* TLS low-level encoding methods, and/or the SigAndHash registry and methods.
*/
// if (!TlsUtils.isValidUint8(hash))
if ((hash & 0xFF) != hash)
{
throw new IllegalArgumentException("'hash' should be a uint8");
}
// if (!TlsUtils.isValidUint8(signature))
if ((signature & 0xFF) != signature)
{
throw new IllegalArgumentException("'signature' should be a uint8");
}
this.hash = hash;
this.signature = signature;
}
/**
* @return {@link HashAlgorithm}
*/
public short getHash()
{
return hash;
}
/**
* @return {@link SignatureAlgorithm}
*/
public short getSignature()
{
return signature;
}
/**
* Encode this {@link SignatureAndHashAlgorithm} to an {@link OutputStream}.
*
* @param output the {@link OutputStream} to encode to.
* @throws IOException
*/
public void encode(OutputStream output)
throws IOException
{
TlsUtils.writeUint8(getHash(), output);
TlsUtils.writeUint8(getSignature(), output);
}
/**
* Parse a {@link SignatureAndHashAlgorithm} from an {@link InputStream}.
*
* @param input the {@link InputStream} to parse from.
* @return a {@link SignatureAndHashAlgorithm} object.
* @throws IOException
*/
public static SignatureAndHashAlgorithm parse(InputStream input)
throws IOException
{
short hash = TlsUtils.readUint8(input);
short signature = TlsUtils.readUint8(input);
return SignatureAndHashAlgorithm.getInstance(hash, signature);
}
public boolean equals(Object obj)
{
if (!(obj instanceof SignatureAndHashAlgorithm))
{
return false;
}
SignatureAndHashAlgorithm other = (SignatureAndHashAlgorithm)obj;
return other.getHash() == getHash() && other.getSignature() == getSignature();
}
public int hashCode()
{
return (getHash() << 16) | getSignature();
}
public String toString()
{
return "{" + HashAlgorithm.getName(hash) + "," + SignatureAlgorithm.getName(signature) + "}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy