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.
26 lines
674 B
26 lines
674 B
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; }
|
|
}
|
|
}
|
|
}
|
|
|