1
0
Fork 0
This commit is contained in:
Mike 2024-01-29 15:21:05 +02:00
parent df0f0b939e
commit f9d7bd5fcb

View file

@ -5,6 +5,13 @@ Lets create test vectors for ed25519 like [RFC7748 page 12](https://datatracker.
One, thousand and million iterations results:
```
Pseudo code:
Data := 64 bytes zeroes
Loop many times:
Pair := create keypair from first 32 bytes of Data
Data := create signature from Pair and Data
Loop:
ED25519:
@ -17,6 +24,3 @@ After 1,000,000 iterations:
fadfecda372cac8783cdab0bfd0471cf0bea522839b509948a7245310cb4a5c48b3f271ec11579729900d755a604d258e72ecaa9f10b815fa4d61b8ffc7a3b02
```
Happy coding!