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,35 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto
{
// Token: 0x02001BC7 RID: 7111
[Token(Token = "0x2001BC7")]
public interface IWrapper
{
// Token: 0x17001BC7 RID: 7111
// (get) Token: 0x0600AED4 RID: 44756
[Token(Token = "0x17001BC7")]
string AlgorithmName
{
[Token(Token = "0x600AED4")]
[Address(Slot = "0")]
get;
}
// Token: 0x0600AED5 RID: 44757
[Token(Token = "0x600AED5")]
[Address(Slot = "1")]
void Init(bool forWrapping, ICipherParameters parameters);
// Token: 0x0600AED6 RID: 44758
[Token(Token = "0x600AED6")]
[Address(Slot = "2")]
byte[] Wrap(byte[] input, int inOff, int length);
// Token: 0x0600AED7 RID: 44759
[Token(Token = "0x600AED7")]
[Address(Slot = "3")]
byte[] Unwrap(byte[] input, int inOff, int length);
}
}