1. 引言 The non-adjacent form (NAF) of a number is a unique signed-digit representation. Like the name suggests, non-zero values cannot be adjacent. For example: ( 0 1 1 1 ) 2 = 4 + 2 + 1 = 7 (0\ 1\ 1
对于Curve25519,其Field域内的module Fp = 2255-19。 对于64位系统: /// A `FieldElement51` represents an element of the field/// \\( \mathbb Z / (2\^{255} - 19)\\).////// In the 64-bit implementation, a `FieldEle
1. Curve25519定义 The Curve25519 function is Fp-restricted x-coordinate scalar multiplication on E(Fp2 ), where p is the prime number p = 2255 − 19 and E is the elliptic curve y2 = x3 + 486662x2 + x. 对