Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

14 lignes
403 B

  1. // +build amd64,!noasm
  2. package sidh
  3. // Set result to zero if the input scalar is <= 3^238, otherwise result is 1.
  4. // Scalar must be array of 48 bytes. This function is specific to P751.
  5. //go:noescape
  6. func checkLessThanThree238(scalar []byte) uint8
  7. // Multiply 48-byte scalar by 3 to get a scalar in 3*[0,3^238). This
  8. // function is specific to P751.
  9. //go:noescape
  10. func multiplyByThree(scalar []byte)