This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,37 @@
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers
{
// Token: 0x02001C93 RID: 7315
[Token(Token = "0x2001C93")]
public interface IDsaKCalculator
{
// Token: 0x17001C85 RID: 7301
// (get) Token: 0x0600B508 RID: 46344
[Token(Token = "0x17001C85")]
bool IsDeterministic
{
[Token(Token = "0x600B508")]
[Address(Slot = "0")]
get;
}
// Token: 0x0600B509 RID: 46345
[Token(Token = "0x600B509")]
[Address(Slot = "1")]
void Init(BigInteger n, SecureRandom random);
// Token: 0x0600B50A RID: 46346
[Token(Token = "0x600B50A")]
[Address(Slot = "2")]
void Init(BigInteger n, BigInteger d, byte[] message);
// Token: 0x0600B50B RID: 46347
[Token(Token = "0x600B50B")]
[Address(Slot = "3")]
BigInteger NextK();
}
}