You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.7 KiB

2 months ago
using System;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Engines;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Crypto.Signers;
namespace Org.BouncyCastle.Tls.Crypto.Impl.BC
{
/// <summary>Operator supporting the verification of RSASSA-PSS signatures using the BC light-weight API.</summary>
public class BcTlsRsaPssVerifier
: BcTlsVerifier
{
private readonly int m_signatureScheme;
public BcTlsRsaPssVerifier(BcTlsCrypto crypto, RsaKeyParameters publicKey, int signatureScheme)
: base(crypto, publicKey)
{
if (!SignatureScheme.IsRsaPss(signatureScheme))
throw new ArgumentException("signatureScheme");
this.m_signatureScheme = signatureScheme;
}
public override bool VerifyRawSignature(DigitallySigned signature, byte[] hash)
{
throw new NotSupportedException();
}
public override TlsStreamVerifier GetStreamVerifier(DigitallySigned signature)
{
SignatureAndHashAlgorithm algorithm = signature.Algorithm;
if (algorithm == null || SignatureScheme.From(algorithm) != m_signatureScheme)
throw new InvalidOperationException("Invalid algorithm: " + algorithm);
int cryptoHashAlgorithm = SignatureScheme.GetCryptoHashAlgorithm(m_signatureScheme);
IDigest digest = m_crypto.CreateDigest(cryptoHashAlgorithm);
PssSigner verifier = new PssSigner(new RsaEngine(), digest, digest.GetDigestSize());
verifier.Init(false, m_publicKey);
return new BcTlsStreamVerifier(verifier, signature.Signature);
}
}
}