// Token: 0x0600237C RID: 9084 RVA: 0x00081569 File Offset: 0x0007F769 private static ulong sigma_1(ulong x) { return(SHA384Managed.RotateRight(x, 19) ^ SHA384Managed.RotateRight(x, 61) ^ x >> 6); }
// Token: 0x0600237A RID: 9082 RVA: 0x00081538 File Offset: 0x0007F738 private static ulong Sigma_1(ulong x) { return(SHA384Managed.RotateRight(x, 14) ^ SHA384Managed.RotateRight(x, 18) ^ SHA384Managed.RotateRight(x, 41)); }
// Token: 0x0600237B RID: 9083 RVA: 0x00081554 File Offset: 0x0007F754 private static ulong sigma_0(ulong x) { return(SHA384Managed.RotateRight(x, 1) ^ SHA384Managed.RotateRight(x, 8) ^ x >> 7); }
// Token: 0x06002379 RID: 9081 RVA: 0x0008151C File Offset: 0x0007F71C private static ulong Sigma_0(ulong x) { return(SHA384Managed.RotateRight(x, 28) ^ SHA384Managed.RotateRight(x, 34) ^ SHA384Managed.RotateRight(x, 39)); }