I am trying to use the ECDsa Class in System.Security.Cryptography, but need to generate deterministic signatures.
Some libraries like bouncycastle implement something that looks like this
ECDsaSigner signer = new ECDsaSigner(new HMacDsaKCalculator(new Sha256Digest()));
Where the ECDsaSigner takes an object which allows you to control K to some degree.
Is there some way to use the ECDsa Class in System.Security.Cryptography and control K ?