2018-04-24 12:15:56 -04:00
|
|
|
#include "../include/ed25519.h"
|
|
|
|
#include "../include/sha512.h"
|
|
|
|
#include "../include/ge.h"
|
2013-01-11 18:54:40 -05:00
|
|
|
|
|
|
|
|
2013-02-04 07:34:01 -05:00
|
|
|
void ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed) {
|
2013-01-11 20:38:34 -05:00
|
|
|
ge_p3 A;
|
2013-01-21 16:28:34 -05:00
|
|
|
|
2019-04-07 10:06:22 -04:00
|
|
|
_ed_sha512(seed, 32, private_key);
|
2013-02-04 07:34:01 -05:00
|
|
|
private_key[0] &= 248;
|
|
|
|
private_key[31] &= 63;
|
|
|
|
private_key[31] |= 64;
|
2013-01-21 16:28:34 -05:00
|
|
|
|
2013-02-04 07:34:01 -05:00
|
|
|
ge_scalarmult_base(&A, private_key);
|
|
|
|
ge_p3_tobytes(public_key, &A);
|
2013-01-11 18:54:40 -05:00
|
|
|
}
|