123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- using Org.BouncyCastle.Math;
- using Org.BouncyCastle.Security;
- namespace Org.BouncyCastle.Crypto.Signers
- {
-
- public interface IDsaKCalculator
- {
-
- bool IsDeterministic { get; }
-
- void Init(BigInteger n, SecureRandom random);
-
- void Init(BigInteger n, BigInteger d, byte[] message);
-
- BigInteger NextK();
- }
- }
- #endif
|