Improve public key storage efficiency #7
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
Currently, the users credential private key coordinates are naively stored as 86bit limbs, which is what the signature verification expects as input.
We store 3 limbs for both x, y coordinates, we're using six felts for storage. Since 6 * 86 = 516 and a felt can store 250bits, we should instead represent the key as 3 felts.
The text was updated successfully, but these errors were encountered: