From 8ee943fc0cfbdbf81bf0fc385cf4279cf58da361 Mon Sep 17 00:00:00 2001 From: Yawning Angel Date: Mon, 2 Feb 2026 10:59:30 +0900 Subject: [PATCH] core/crypto/_weirstrass: Cosmetic fixes (NFC) --- core/crypto/_fiat/field_p256r1/field.odin | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/crypto/_fiat/field_p256r1/field.odin b/core/crypto/_fiat/field_p256r1/field.odin index b1662fd48..0ba0e327d 100644 --- a/core/crypto/_fiat/field_p256r1/field.odin +++ b/core/crypto/_fiat/field_p256r1/field.odin @@ -209,7 +209,7 @@ fe_sqrt :: proc "contextless" (out1, arg1: ^Montgomery_Domain_Field_Element) -> // Square root candidate can be derived via exponentiation by `(p + 1) / 4` // From sage: 28948022302589062190674361737351893382521535853822578548883407827216774463488 // - // // Inversion computation is derived from the addition chain: + // Inversion computation is derived from the addition chain: // // _10 = 2*1 // _11 = 1 + _10 @@ -283,7 +283,6 @@ fe_sqrt :: proc "contextless" (out1, arg1: ^Montgomery_Domain_Field_Element) -> fe_clear_vec([]^Montgomery_Domain_Field_Element{&t0, &xx, &check}) return is_valid - } fe_zero :: proc "contextless" (out1: ^Montgomery_Domain_Field_Element) {