Files
Apr2020-Cpp2Il-Dump/Assembly-CSharp/BestHTTP/SecureProtocol/Org/BouncyCastle/Crypto/Agreement/ECDHWithKdfBasicAgreement.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

79 lines
4.9 KiB
C#

using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement.Kdf;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement
{
// Token: 0x02001D0A RID: 7434
[Token(Token = "0x2001D0A")]
public class ECDHWithKdfBasicAgreement : ECDHBasicAgreement
{
// Token: 0x0600BC45 RID: 48197 RVA: 0x002AC98C File Offset: 0x002AAB8C
[Token(Token = "0x600BC45")]
[Address(RVA = "0x2009840", Offset = "0x2008640", VA = "0x182009840")]
public ECDHWithKdfBasicAgreement(string algorithm, IDerivationFunction kdf)
{
/*
An exception occurred when decompiling this method (0600BC45)
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement.ECDHWithKdfBasicAgreement::.ctor(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDerivationFunction)
---> System.Exception: Basic block has to end with unconditional control flow.
{
IL_28:
stloc:ArgumentNullException(var_1_32, newobj:ArgumentNullException(ArgumentNullException::.ctor, ldstr:string("kdf")))
}
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
--- End of inner exception stack trace ---
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1660
*/;
}
// Token: 0x0600BC46 RID: 48198 RVA: 0x002AC9CC File Offset: 0x002AABCC
[Token(Token = "0x600BC46")]
[Address(RVA = "0x2009690", Offset = "0x2008490", VA = "0x182009690", Slot = "9")]
public override BigInteger CalculateAgreement(ICipherParameters pubKey)
{
BigInteger bigInteger = base.CalculateAgreement(pubKey);
int defaultKeySize = GeneratorUtilities.GetDefaultKeySize(this.algorithm);
DerObjectIdentifier derObjectIdentifier = new DerObjectIdentifier(this.algorithm);
int byteLength = X9IntegerConverter.GetByteLength(this.privKey.parameters.curve);
byte[] array = X9IntegerConverter.IntegerToBytes(bigInteger, byteLength);
DHKdfParameters dhkdfParameters = new DHKdfParameters(derObjectIdentifier, defaultKeySize, array);
IDerivationFunction derivationFunction = this.kdf;
byte[] array2 = new byte[0];
IDerivationFunction derivationFunction2 = this.kdf;
int length = array2.Length;
return new BigInteger(1, array2);
}
// Token: 0x0600BC47 RID: 48199 RVA: 0x002ACA54 File Offset: 0x002AAC54
[Token(Token = "0x600BC47")]
[Address(RVA = "0x2009650", Offset = "0x2008450", VA = "0x182009650")]
private byte[] BigIntToBytes(BigInteger r)
{
int byteLength = X9IntegerConverter.GetByteLength(this.privKey.parameters.curve);
return X9IntegerConverter.IntegerToBytes(r, byteLength);
}
// Token: 0x040077C6 RID: 30662
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40077C6")]
private readonly string algorithm;
// Token: 0x040077C7 RID: 30663
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x40077C7")]
private readonly IDerivationFunction kdf;
}
}