You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
517 B

  1. // Package csidh implements cSIDH key exchange, isogeny-based scheme
  2. // resulting from the group action. Implementation uses only prime
  3. // field of a size 512-bits and uses Ed some performance improvements
  4. // by using twisted Edwards curves in the isogeny image curve
  5. // computations. This work has been described by M. Meyer and S. Reith
  6. // in the ia.cr/2018/782. Original cSIDH paper can be found in the
  7. // ia.cr/2018/383.
  8. //
  9. // It is experimental implementation, not meant to be secure. Have fun!
  10. //
  11. package csidh