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.
45 lines
1.6 KiB
45 lines
1.6 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 generation of RSASSA-PSS signatures using the BC light-weight API.</summary>
|
||
|
public class BcTlsRsaPssSigner
|
||
|
: BcTlsSigner
|
||
|
{
|
||
|
private readonly int m_signatureScheme;
|
||
|
|
||
|
public BcTlsRsaPssSigner(BcTlsCrypto crypto, RsaKeyParameters privateKey, int signatureScheme)
|
||
|
: base(crypto, privateKey)
|
||
|
{
|
||
|
if (!SignatureScheme.IsRsaPss(signatureScheme))
|
||
|
throw new ArgumentException("signatureScheme");
|
||
|
|
||
|
this.m_signatureScheme = signatureScheme;
|
||
|
}
|
||
|
|
||
|
public override byte[] GenerateRawSignature(SignatureAndHashAlgorithm algorithm, byte[] hash)
|
||
|
{
|
||
|
throw new NotSupportedException();
|
||
|
}
|
||
|
|
||
|
public override TlsStreamSigner GetStreamSigner(SignatureAndHashAlgorithm 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 signer = new PssSigner(new RsaBlindedEngine(), digest, digest.GetDigestSize());
|
||
|
signer.Init(true, new ParametersWithRandom(m_privateKey, m_crypto.SecureRandom));
|
||
|
|
||
|
return new BcTlsStreamSigner(signer);
|
||
|
}
|
||
|
}
|
||
|
}
|