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,30 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto
{
// Token: 0x02001BBD RID: 7101
[Token(Token = "0x2001BBD")]
public interface IRawAgreement
{
// Token: 0x0600AEB3 RID: 44723
[Token(Token = "0x600AEB3")]
[Address(Slot = "0")]
void Init(ICipherParameters parameters);
// Token: 0x17001BC1 RID: 7105
// (get) Token: 0x0600AEB4 RID: 44724
[Token(Token = "0x17001BC1")]
int AgreementSize
{
[Token(Token = "0x600AEB4")]
[Address(Slot = "1")]
get;
}
// Token: 0x0600AEB5 RID: 44725
[Token(Token = "0x600AEB5")]
[Address(Slot = "2")]
void CalculateAgreement(ICipherParameters publicKey, byte[] buf, int off);
}
}