using System; using System.Runtime.CompilerServices; using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines; using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters; using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities; using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities; using Cpp2IlInjected; namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests { // Token: 0x02001DC3 RID: 7619 [Token(Token = "0x2001DC3")] public class Gost3411Digest : IDigest, IMemoable { // Token: 0x0600BE0A RID: 48650 RVA: 0x002A75FC File Offset: 0x002A57FC [Token(Token = "0x600BE0A")] [Address(RVA = "0x25A5570", Offset = "0x25A4570", VA = "0x1825A5570")] private static byte[][] MakeC() { byte[][] array = new byte[4][]; int num = 0; byte[] array2 = new byte[32]; if (array2 != 0) { } num++; array[0] = array2; return array; } // Token: 0x0600BE0B RID: 48651 RVA: 0x002A7634 File Offset: 0x002A5834 [Token(Token = "0x600BE0B")] [Address(RVA = "0x25A5DB0", Offset = "0x25A4DB0", VA = "0x1825A5DB0")] public Gost3411Digest() { byte[] array = new byte[32]; this.H = array; byte[] array2 = new byte[32]; this.L = array2; byte[] array3 = new byte[32]; this.M = array3; byte[] array4 = new byte[32]; this.Sum = array4; byte[][] array5 = Gost3411Digest.MakeC(); this.C = array5; byte[] array6 = new byte[32]; this.xBuf = array6; Gost28147Engine gost28147Engine = new Gost28147Engine(); this.cipher = gost28147Engine; byte[] array7 = new byte[32]; this.K = array7; byte[] array8 = new byte[8]; this.a = array8; short[] array9 = new short[16]; this.wS = array9; short[] array10 = new short[16]; this.w_S = array10; byte[] array11 = new byte[32]; this.S = array11; byte[] array12 = new byte[32]; this.U = array12; byte[] array13 = new byte[32]; this.V = array13; byte[] array14 = new byte[32]; this.W = array14; base..ctor(); byte[] sbox = Gost28147Engine.GetSBox("D-A"); IBlockCipher blockCipher = this.cipher; this.sBox = sbox; int num; ParametersWithSBox parametersWithSBox = new ParametersWithSBox(num, sbox); num = 0; this.Reset(); } // Token: 0x0600BE0C RID: 48652 RVA: 0x002A7774 File Offset: 0x002A5974 [Token(Token = "0x600BE0C")] [Address(RVA = "0x25A61B0", Offset = "0x25A51B0", VA = "0x1825A61B0")] public Gost3411Digest(byte[] sBoxParam) { byte[] array = new byte[32]; this.H = array; byte[] array2 = new byte[32]; this.L = array2; byte[] array3 = new byte[32]; this.M = array3; byte[] array4 = new byte[32]; this.Sum = array4; byte[][] array5 = Gost3411Digest.MakeC(); this.C = array5; byte[] array6 = new byte[32]; this.xBuf = array6; Gost28147Engine gost28147Engine = new Gost28147Engine(); this.cipher = gost28147Engine; byte[] array7 = new byte[32]; this.K = array7; byte[] array8 = new byte[8]; this.a = array8; short[] array9 = new short[16]; this.wS = array9; short[] array10 = new short[16]; this.w_S = array10; byte[] array11 = new byte[32]; this.S = array11; byte[] array12 = new byte[32]; this.U = array12; byte[] array13 = new byte[32]; this.V = array13; byte[] array14 = new byte[32]; this.W = array14; base..ctor(); byte[] array15 = Arrays.Clone(sBoxParam); IBlockCipher blockCipher = this.cipher; this.sBox = array15; int num; ParametersWithSBox parametersWithSBox = new ParametersWithSBox(num, array15); num = 0; this.Reset(); } // Token: 0x0600BE0D RID: 48653 RVA: 0x002A78B0 File Offset: 0x002A5AB0 [Token(Token = "0x600BE0D")] [Address(RVA = "0x25A5FF0", Offset = "0x25A4FF0", VA = "0x1825A5FF0")] public Gost3411Digest(Gost3411Digest t) { byte[] array = new byte[32]; this.H = array; byte[] array2 = new byte[32]; this.L = array2; byte[] array3 = new byte[32]; this.M = array3; byte[] array4 = new byte[32]; this.Sum = array4; byte[][] array5 = Gost3411Digest.MakeC(); this.C = array5; byte[] array6 = new byte[32]; this.xBuf = array6; Gost28147Engine gost28147Engine = new Gost28147Engine(); this.cipher = gost28147Engine; byte[] array7 = new byte[32]; this.K = array7; byte[] array8 = new byte[8]; this.a = array8; short[] array9 = new short[16]; this.wS = array9; short[] array10 = new short[16]; this.w_S = array10; byte[] array11 = new byte[32]; this.S = array11; byte[] array12 = new byte[32]; this.U = array12; byte[] array13 = new byte[32]; this.V = array13; byte[] array14 = new byte[32]; this.W = array14; base..ctor(); this.Reset(t); } // Token: 0x17001DA8 RID: 7592 // (get) Token: 0x0600BE0E RID: 48654 RVA: 0x002A79C0 File Offset: 0x002A5BC0 [Token(Token = "0x17001DA8")] public string AlgorithmName { [Token(Token = "0x600BE0E")] [Address(RVA = "0x25A6960", Offset = "0x25A5960", VA = "0x1825A6960", Slot = "4")] get { return "Gost3411"; } } // Token: 0x0600BE0F RID: 48655 RVA: 0x002A79D4 File Offset: 0x002A5BD4 [Token(Token = "0x600BE0F")] [Address(RVA = "0x8BCAC0", Offset = "0x8BBAC0", VA = "0x1808BCAC0", Slot = "5")] public int GetDigestSize() { return 32; } // Token: 0x0600BE10 RID: 48656 RVA: 0x002A79E4 File Offset: 0x002A5BE4 [Token(Token = "0x600BE10")] [Address(RVA = "0x25A5CD0", Offset = "0x25A4CD0", VA = "0x1825A5CD0", Slot = "7")] public void Update(byte input) { byte[] array = this.xBuf; int num = this.xBufOff + 1; this.xBufOff = num; byte[] array2 = this.xBuf; int length = array2.Length; if (this.xBufOff == length) { this.sumByteArray(array2); byte[] array3 = this.xBuf; int num2 = 0; this.processBlock(array3, num2); this.xBufOff = (int)((ulong)0L); } } // Token: 0x0600BE11 RID: 48657 RVA: 0x002A7A4C File Offset: 0x002A5C4C [Token(Token = "0x600BE11")] [Address(RVA = "0x25A4E40", Offset = "0x25A3E40", VA = "0x1825A4E40", Slot = "8")] public void BlockUpdate(byte[] input, int inOff, int length) { int num = 0; int num2 = this.xBufOff; if (num2 != 0 && length > 0) { byte[] array = this.xBuf; int num3 = num2 + 1; this.xBufOff = num3; byte[] array2 = this.xBuf; int num4 = this.xBufOff; if (num4 == array2.Length) { this.sumByteArray(array2); byte[] array3 = this.xBuf; int num5 = 0; this.processBlock(array3, num5); this.xBufOff = num; } while (num4 != 0) { } } byte[] array4 = this.xBuf; if (length > array4.Length) { int length2 = array4.Length; int num6 = 0; Array.Copy(input, inOff, array4, num6, length2); byte[] array5 = this.xBuf; int length3 = this.Sum.Length; if (num != length3) { byte b; num += (int)b; byte b2; num += (int)b2; num++; } byte[] array6 = this.xBuf; int num7 = 0; this.processBlock(array6, num7); int length4 = this.xBuf.Length; } if (length > 0) { int num8 = this.xBufOff; byte[] array7 = this.xBuf; int num9 = num8 + 1; this.xBufOff = num9; int length5 = this.xBuf.Length; if (this.xBufOff == length5) { int length6 = this.Sum.Length; if (num != length6) { byte b3; num += (int)b3; byte b4; num += (int)b4; num++; } byte[] array8 = this.xBuf; int num10 = 0; this.processBlock(array8, num10); this.xBufOff = num; } } } // Token: 0x0600BE12 RID: 48658 RVA: 0x002A7BB8 File Offset: 0x002A5DB8 [Token(Token = "0x600BE12")] [Address(RVA = "0x25A5630", Offset = "0x25A4630", VA = "0x1825A5630")] private byte[] P(byte[] input) { int num = 0; byte[] k = this.K; byte[] k2 = this.K; byte[] k3 = this.K; num += 2; byte[] k4 = this.K; num++; return this.K; } // Token: 0x0600BE13 RID: 48659 RVA: 0x002A7BFC File Offset: 0x002A5DFC [Token(Token = "0x600BE13")] [Address(RVA = "0x25A4D50", Offset = "0x25A3D50", VA = "0x1825A4D50")] private byte[] A(byte[] input) { int num = 0; int length = input.Length; byte[] array = this.a; byte b = input[num]; num++; int num2 = 0; ulong num3; Array.Copy(input, 8, input, num2, (int)num3); byte[] array2 = this.a; int num4 = 0; ulong num5; Array.Copy(array2, num4, input, 24, (int)num5); return input; } // Token: 0x0600BE14 RID: 48660 RVA: 0x002A7C54 File Offset: 0x002A5E54 [Token(Token = "0x600BE14")] [Address(RVA = "0x25A5490", Offset = "0x25A4490", VA = "0x1825A5490")] private void E(byte[] key, byte[] s, int sOff, byte[] input, int inOff) { IBlockCipher blockCipher = this.cipher; KeyParameter keyParameter = new KeyParameter(key); IBlockCipher blockCipher2 = this.cipher; throw new NullReferenceException(); } // Token: 0x0600BE15 RID: 48661 RVA: 0x002A7C7C File Offset: 0x002A5E7C [Token(Token = "0x600BE15")] [Address(RVA = "0x25A6640", Offset = "0x25A5640", VA = "0x1825A6640")] private void fw(byte[] input) { short[] array = this.wS; int num = 0; int num2 = input.Length; num2 -= input; if (num < num2) { num++; num += 2; byte b; array[0] = (short)b; } short[] array2 = this.wS; short[] array3 = this.w_S; int length = array2.Length; short num3 = array2[3]; int num4 = 0; array3[3] = num3; short[] array4 = this.w_S; ulong num5; Array.Copy(this.wS, 1, array4, num4, (int)num5); short[] array5 = this.w_S; int num6 = input.Length; num6--; if (num < num6) { short num7 = array5[num]; num++; num += 2; } } // Token: 0x0600BE16 RID: 48662 RVA: 0x002A7D30 File Offset: 0x002A5F30 [Token(Token = "0x600BE16")] [Address(RVA = "0x25A6990", Offset = "0x25A5990", VA = "0x1825A6990")] private void processBlock(byte[] input, int inOff) { byte[] m = this.M; int num = 0; int num2 = 0; ulong num3; Array.Copy(input, inOff, m, num2, (int)num3); byte[] h = this.H; byte[] u = this.U; byte[] m2 = this.M; byte[] v = this.V; byte[] u2 = this.U; byte[] v2 = this.V; byte[] w = this.W; num++; byte[] w2 = this.W; byte[] array = this.P(w2); byte[] h2 = this.H; int num4 = 0; byte[] s = this.S; this.E(array, s, num4, h2, num); byte[] u3 = this.U; byte[] array2 = this.A(u3); uint num5; byte[] array3 = this.C[(int)num5]; byte[] u4 = this.U; num++; byte[] v3 = this.V; byte[] array4 = this.A(v3); byte[] array5 = this.A(array4); this.V = array5; byte[] u5 = this.U; byte[] v4 = this.V; byte[] w3 = this.W; num++; byte[] w4 = this.W; byte[] array6 = this.P(w4); byte[] h3 = this.H; byte[] s2 = this.S; this.E(array6, s2, num, h3, num); num5 += (uint)1; byte[] s3 = this.S; this.fw(s3); byte[] s4 = this.S; byte[] m3 = this.M; num++; byte[] s5 = this.S; this.fw(s5); byte[] h4 = this.H; byte[] s6 = this.S; num++; byte[] s7 = this.S; this.fw(s7); while (num != 32) { } byte[] h5 = this.H; int length = h5.Length; int num6 = 0; byte[] s8 = this.S; int num7 = 0; Array.Copy(s8, num7, h5, num6, length); } // Token: 0x0600BE17 RID: 48663 RVA: 0x002A7F00 File Offset: 0x002A6100 [Token(Token = "0x600BE17")] [Address(RVA = "0x25A6570", Offset = "0x25A5570", VA = "0x1825A6570")] private void finish() { ulong num = this.byteCount; byte[] l = this.L; Pack.UInt64_To_LE(num, l); int num2 = this.xBufOff; if (num2 != 0) { int num3 = 0; byte[] array = this.xBuf; int num4 = num2 + 1; this.xBufOff = num4; byte[] array2 = this.xBuf; int num5 = this.xBufOff; if (num5 == array2.Length) { this.sumByteArray(array2); byte[] array3 = this.xBuf; int num6 = 0; this.processBlock(array3, num6); this.xBufOff = num3; } while (num5 != 0) { } } byte[] l2 = this.L; int num7 = 0; this.processBlock(l2, num7); byte[] sum = this.Sum; int num8 = 0; this.processBlock(sum, num8); } // Token: 0x0600BE18 RID: 48664 RVA: 0x002A7FBC File Offset: 0x002A61BC [Token(Token = "0x600BE18")] [Address(RVA = "0x25A5370", Offset = "0x25A4370", VA = "0x1825A5370", Slot = "9")] public int DoFinal(byte[] output, int outOff) { ulong num = this.byteCount; byte[] l = this.L; Pack.UInt64_To_LE(num, l); int num2 = this.xBufOff; if (num2 != 0) { int num3 = 0; byte[] array = this.xBuf; int num4 = num2 + 1; this.xBufOff = num4; byte[] array2 = this.xBuf; int num5 = this.xBufOff; if (num5 == array2.Length) { this.sumByteArray(array2); byte[] array3 = this.xBuf; int num6 = 0; this.processBlock(array3, num6); this.xBufOff = num3; } while (num5 != 0) { } } byte[] l2 = this.L; int num7 = 0; this.processBlock(l2, num7); byte[] sum = this.Sum; int num8 = 0; this.processBlock(sum, num8); byte[] h = this.H; this.Reset(); return 32; } // Token: 0x0600BE19 RID: 48665 RVA: 0x002A8088 File Offset: 0x002A6288 [Token(Token = "0x600BE19")] [Address(RVA = "0x25A57B0", Offset = "0x25A47B0", VA = "0x1825A57B0", Slot = "10")] public void Reset() { byte[] h = this.H; int num = 0; this.byteCount = (ulong)num; this.xBufOff = num; int length = h.Length; int num2 = 0; Array.Clear(h, num2, length); byte[] l = this.L; int length2 = l.Length; int num3 = 0; Array.Clear(l, num3, length2); byte[] m = this.M; int length3 = m.Length; int num4 = 0; Array.Clear(m, num4, length3); byte[] array = this.C[1]; int length4 = array.Length; int num5 = 0; Array.Clear(array, num5, length4); byte[] array2 = this.C[3]; int length5 = array2.Length; int num6 = 0; Array.Clear(array2, num6, length5); byte[] sum = this.Sum; int length6 = sum.Length; int num7 = 0; Array.Clear(sum, num7, length6); byte[] array3 = this.xBuf; int length7 = array3.Length; int num8 = 0; Array.Clear(array3, num8, length7); byte[][] c = this.C; byte[] c2 = Gost3411Digest.C2; byte[] array4 = c[2]; } // Token: 0x0600BE1A RID: 48666 RVA: 0x002A81A8 File Offset: 0x002A63A8 [Token(Token = "0x600BE1A")] [Address(RVA = "0x25A6E50", Offset = "0x25A5E50", VA = "0x1825A6E50")] private void sumByteArray(byte[] input) { int num = 0; byte[] sum = this.Sum; if (num != sum.Length) { num++; byte b; num += (int)b; byte b2; num += (int)b2; byte[] sum2 = this.Sum; } } // Token: 0x0600BE1B RID: 48667 RVA: 0x002A81E4 File Offset: 0x002A63E4 [Token(Token = "0x600BE1B")] [Address(RVA = "0x25A63F0", Offset = "0x25A53F0", VA = "0x1825A63F0")] private static void cpyBytesToShort(byte[] S, short[] wS) { int num = 0; int num2 = S.Length; num2 -= wS; if (num < num2) { num++; num += 2; byte b; wS[0] = (short)b; } } // Token: 0x0600BE1C RID: 48668 RVA: 0x002A8218 File Offset: 0x002A6418 [Token(Token = "0x600BE1C")] [Address(RVA = "0x25A64A0", Offset = "0x25A54A0", VA = "0x1825A64A0")] private static void cpyShortToBytes(short[] wS, byte[] S) { int num = 0; int num2 = S.Length; num2 -= S; if (num < num2) { short num3 = wS[num]; num++; num += 2; } } // Token: 0x0600BE1D RID: 48669 RVA: 0x002A824C File Offset: 0x002A644C [Token(Token = "0x600BE1D")] [Address(RVA = "0x8BCAC0", Offset = "0x8BBAC0", VA = "0x1808BCAC0", Slot = "6")] public int GetByteLength() { return 32; } // Token: 0x0600BE1E RID: 48670 RVA: 0x002A825C File Offset: 0x002A645C [Token(Token = "0x600BE1E")] [Address(RVA = "0x25A5180", Offset = "0x25A4180", VA = "0x1825A5180", Slot = "11")] public IMemoable Copy() { /* An exception occurred when decompiling this method (0600BE1E) ICSharpCode.Decompiler.DecompilerException: Error decompiling BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IMemoable BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Gost3411Digest::Copy() ---> System.Exception: Basic block has to end with unconditional control flow. { Block_0: stloc:uint8[](var_1_07, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::H, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_1_07)) stloc:uint8[](var_2_16, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::L, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_2_16)) stloc:uint8[](var_3_25, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::M, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_3_25)) stloc:uint8[](var_4_34, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::Sum, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_4_34)) stloc:uint8[][](var_6_46, call:uint8[][](Gost3411Digest::MakeC)) stfld:uint8[][](Gost3411Digest::C, ldloc:Gost3411Digest(var_0), ldloc:uint8[][](var_6_46)) stloc:uint8[](var_7_57, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::xBuf, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_7_57)) stloc:Gost28147Engine(var_8_66, newobj:Gost28147Engine(Gost28147Engine::.ctor)) stfld:IBlockCipher(Gost3411Digest::cipher, ldloc:Gost3411Digest(var_0), ldloc:Gost28147Engine[exp:IBlockCipher](var_8_66)) stloc:uint8[](var_9_77, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::K, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_9_77)) stloc:uint8[](var_10_87, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(8))) stfld:uint8[](Gost3411Digest::a, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_10_87)) stloc:int16[](var_11_98, newarr:int16[]([mscorlib]System.Int16, ldc.i4:int32(16))) stfld:int16[](Gost3411Digest::wS, ldloc:Gost3411Digest(var_0), ldloc:int16[](var_11_98)) stloc:int16[](var_12_A9, newarr:int16[]([mscorlib]System.Int16, ldc.i4:int32(16))) stfld:int16[](Gost3411Digest::w_S, ldloc:Gost3411Digest(var_0), ldloc:int16[](var_12_A9)) stloc:uint8[](var_13_BA, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::S, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_13_BA)) stloc:uint8[](var_14_CB, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::U, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_14_CB)) stloc:uint8[](var_15_DC, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::V, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_15_DC)) stloc:uint8[](var_16_ED, newarr:uint8[]([mscorlib]System.Byte, ldc.i4:int32(32))) stfld:uint8[](Gost3411Digest::W, ldloc:Gost3411Digest(var_0), ldloc:uint8[](var_16_ED)) call:void(Gost3411Digest::Reset, ldloc:Gost3411Digest(var_0), ldloc:Gost3411Digest[exp:IMemoable](this)) } 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 1663 */; } // Token: 0x0600BE1F RID: 48671 RVA: 0x002A8368 File Offset: 0x002A6568 [Token(Token = "0x600BE1F")] [Address(RVA = "0x25A5970", Offset = "0x25A4970", VA = "0x1825A5970", Slot = "12")] public void Reset(IMemoable other) { while (other == 0) { } IBlockCipher blockCipher = this.cipher; this.sBox = other; this.Reset(); byte[] l = this.L; byte[] l2 = this.L; byte[] l3 = this.L; byte[] l4 = this.L; byte[][] c = this.C; byte b = l4[1]; byte[][] c2 = this.C; byte[][] c3 = this.C; this.xBufOff = c3; this.byteCount = c3; } // Token: 0x0600BE20 RID: 48672 RVA: 0x002A83EC File Offset: 0x002A65EC // Note: this type is marked as 'beforefieldinit'. [Token(Token = "0x600BE20")] [Address(RVA = "0x25A5D50", Offset = "0x25A4D50", VA = "0x1825A5D50")] static Gost3411Digest() { byte[] array = new byte[32]; RuntimeHelpers.InitializeArray(array, fieldof(.CC5B8B6FA17DA57B26C3ACA4DA8B2A477C609D63).FieldHandle); Gost3411Digest.C2 = array; } // Token: 0x0400782B RID: 30763 [Token(Token = "0x400782B")] private const int DIGEST_LENGTH = 32; // Token: 0x0400782C RID: 30764 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400782C")] private byte[] H; // Token: 0x0400782D RID: 30765 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400782D")] private byte[] L; // Token: 0x0400782E RID: 30766 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400782E")] private byte[] M; // Token: 0x0400782F RID: 30767 [FieldOffset(Offset = "0x28")] [Token(Token = "0x400782F")] private byte[] Sum; // Token: 0x04007830 RID: 30768 [FieldOffset(Offset = "0x30")] [Token(Token = "0x4007830")] private byte[][] C; // Token: 0x04007831 RID: 30769 [FieldOffset(Offset = "0x38")] [Token(Token = "0x4007831")] private byte[] xBuf; // Token: 0x04007832 RID: 30770 [FieldOffset(Offset = "0x40")] [Token(Token = "0x4007832")] private int xBufOff; // Token: 0x04007833 RID: 30771 [FieldOffset(Offset = "0x48")] [Token(Token = "0x4007833")] private ulong byteCount; // Token: 0x04007834 RID: 30772 [FieldOffset(Offset = "0x50")] [Token(Token = "0x4007834")] private readonly IBlockCipher cipher; // Token: 0x04007835 RID: 30773 [FieldOffset(Offset = "0x58")] [Token(Token = "0x4007835")] private byte[] sBox; // Token: 0x04007836 RID: 30774 [FieldOffset(Offset = "0x60")] [Token(Token = "0x4007836")] private byte[] K; // Token: 0x04007837 RID: 30775 [FieldOffset(Offset = "0x68")] [Token(Token = "0x4007837")] private byte[] a; // Token: 0x04007838 RID: 30776 [FieldOffset(Offset = "0x70")] [Token(Token = "0x4007838")] internal short[] wS; // Token: 0x04007839 RID: 30777 [FieldOffset(Offset = "0x78")] [Token(Token = "0x4007839")] internal short[] w_S; // Token: 0x0400783A RID: 30778 [FieldOffset(Offset = "0x80")] [Token(Token = "0x400783A")] internal byte[] S; // Token: 0x0400783B RID: 30779 [FieldOffset(Offset = "0x88")] [Token(Token = "0x400783B")] internal byte[] U; // Token: 0x0400783C RID: 30780 [FieldOffset(Offset = "0x90")] [Token(Token = "0x400783C")] internal byte[] V; // Token: 0x0400783D RID: 30781 [FieldOffset(Offset = "0x98")] [Token(Token = "0x400783D")] internal byte[] W; // Token: 0x0400783E RID: 30782 [Token(Token = "0x400783E")] private static readonly byte[] C2; } }