Cryptography Series - Mapping from Finite Fields to ECC

ECC-based cryptographic protocols often use the mapping from finite fields to ECC, that is, the elements in the finite field Fp are mapped to points on the ECC curve. Common algorithms for mapping finite fields to ECC include Try-and_Increment, SWU, Icart, etc. This article introduces the Try-and_Increment algorithm, which is described as follows: The
insert image description here
Golang code implementation of the Try-and_Increment algorithm is as follows:
insert image description here
Reference: "A Review of the Construction and Application of Coding Mapping from Finite Fields to Elliptic Curves"

Guess you like

Origin blog.csdn.net/weixin_40862140/article/details/130369746