This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers
{
// Token: 0x02001BB2 RID: 7090
[Token(Token = "0x2001BB2")]
public interface IDsaEncoding
{
// Token: 0x0600B138 RID: 45368
[Token(Token = "0x600B138")]
[Address(Slot = "0")]
BigInteger[] Decode(BigInteger n, byte[] encoding);
// Token: 0x0600B139 RID: 45369
[Token(Token = "0x600B139")]
[Address(Slot = "1")]
byte[] Encode(BigInteger n, BigInteger r, BigInteger s);
}
}