// Token: 0x06002391 RID: 9105 RVA: 0x00081DA9 File Offset: 0x0007FFA9
 private static ulong sigma_1(ulong x)
 {
     return(SHA512Managed.RotateRight(x, 19) ^ SHA512Managed.RotateRight(x, 61) ^ x >> 6);
 }
 // Token: 0x0600238F RID: 9103 RVA: 0x00081D78 File Offset: 0x0007FF78
 private static ulong Sigma_1(ulong x)
 {
     return(SHA512Managed.RotateRight(x, 14) ^ SHA512Managed.RotateRight(x, 18) ^ SHA512Managed.RotateRight(x, 41));
 }
 // Token: 0x06002390 RID: 9104 RVA: 0x00081D94 File Offset: 0x0007FF94
 private static ulong sigma_0(ulong x)
 {
     return(SHA512Managed.RotateRight(x, 1) ^ SHA512Managed.RotateRight(x, 8) ^ x >> 7);
 }
 // Token: 0x0600238E RID: 9102 RVA: 0x00081D5C File Offset: 0x0007FF5C
 private static ulong Sigma_0(ulong x)
 {
     return(SHA512Managed.RotateRight(x, 28) ^ SHA512Managed.RotateRight(x, 34) ^ SHA512Managed.RotateRight(x, 39));
 }