diff options
| author | patrick-scho | 2023-11-13 19:58:33 +0100 |
|---|---|---|
| committer | patrick-scho | 2023-11-13 19:58:33 +0100 |
| commit | da776f86b42946715c27edd64f7558b9d5080df1 (patch) | |
| tree | c7e340bb253bd38f73368baeec7f12e914a39955 /ext/olm/lib/ed25519/src/keypair.c | |
| parent | 21c6e8484b0bd05c27e5a91f2884d431926adc61 (diff) | |
| download | matrix_esp_thesis-da776f86b42946715c27edd64f7558b9d5080df1.tar.gz matrix_esp_thesis-da776f86b42946715c27edd64f7558b9d5080df1.zip | |
add dependencies to repo
Diffstat (limited to 'ext/olm/lib/ed25519/src/keypair.c')
| -rw-r--r-- | ext/olm/lib/ed25519/src/keypair.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/olm/lib/ed25519/src/keypair.c b/ext/olm/lib/ed25519/src/keypair.c new file mode 100644 index 0000000..dc1b8ec --- /dev/null +++ b/ext/olm/lib/ed25519/src/keypair.c @@ -0,0 +1,16 @@ +#include "ed25519.h" +#include "sha512.h" +#include "ge.h" + + +void ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed) { + ge_p3 A; + + sha512(seed, 32, private_key); + private_key[0] &= 248; + private_key[31] &= 63; + private_key[31] |= 64; + + ge_scalarmult_base(&A, private_key); + ge_p3_tobytes(public_key, &A); +} |
