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
679 B

using System;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Crypto.Signers;
namespace Org.BouncyCastle.Crypto.Tls
{
public class TlsECDsaSigner
: TlsDsaSigner
{
public override bool IsValidPublicKey(AsymmetricKeyParameter publicKey)
{
return publicKey is ECPublicKeyParameters;
}
protected override IDsa CreateDsaImpl(byte hashAlgorithm)
{
return new ECDsaSigner(new HMacDsaKCalculator(TlsUtilities.CreateHash(hashAlgorithm)));
}
protected override byte SignatureAlgorithm
{
get { return Tls.SignatureAlgorithm.ecdsa; }
}
}
}