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.
27 lines
674 B
27 lines
674 B
2 months ago
|
using System;
|
||
|
|
||
|
using Org.BouncyCastle.Crypto.Parameters;
|
||
|
using Org.BouncyCastle.Crypto.Signers;
|
||
|
|
||
|
namespace Org.BouncyCastle.Crypto.Tls
|
||
|
{
|
||
|
public class TlsDssSigner
|
||
|
: TlsDsaSigner
|
||
|
{
|
||
|
public override bool IsValidPublicKey(AsymmetricKeyParameter publicKey)
|
||
|
{
|
||
|
return publicKey is DsaPublicKeyParameters;
|
||
|
}
|
||
|
|
||
|
protected override IDsa CreateDsaImpl(byte hashAlgorithm)
|
||
|
{
|
||
|
return new DsaSigner(new HMacDsaKCalculator(TlsUtilities.CreateHash(hashAlgorithm)));
|
||
|
}
|
||
|
|
||
|
protected override byte SignatureAlgorithm
|
||
|
{
|
||
|
get { return Tls.SignatureAlgorithm.dsa; }
|
||
|
}
|
||
|
}
|
||
|
}
|