File: keygen.c

package info (click to toggle)
python-axolotl-curve25519 0.4.1.post2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 664 kB
  • sloc: ansic: 5,207; python: 34; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 621 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "ge.h"
#include "keygen.h"
#include "crypto_additions.h"

void curve25519_keygen(unsigned char* curve25519_pubkey_out,
                       const unsigned char* curve25519_privkey_in)
{
  /* Perform a fixed-base multiplication of the Edwards base point,
     (which is efficient due to precalculated tables), then convert
     to the Curve25519 montgomery-format public key.

     NOTE: y=1 is converted to u=0 since fe_invert is mod-exp
  */

  ge_p3 ed; /* Ed25519 pubkey point */
  fe u;

  ge_scalarmult_base(&ed, curve25519_privkey_in);
  ge_p3_to_montx(u, &ed);
  fe_tobytes(curve25519_pubkey_out, u);
}