2018-09-19 19:49:47 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
2020-01-02 13:52:25 -05:00
|
|
|
* Copyright (C) 2015-2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
2017-11-30 10:23:50 -05:00
|
|
|
*/
|
2015-06-05 09:58:00 -04:00
|
|
|
|
|
|
|
#ifndef CURVE25519_H
|
|
|
|
#define CURVE25519_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
enum curve25519_lengths {
|
2019-02-03 15:50:54 -05:00
|
|
|
CURVE25519_KEY_SIZE = 32
|
2015-06-05 09:58:00 -04:00
|
|
|
};
|
|
|
|
|
2018-09-24 16:02:13 -04:00
|
|
|
void curve25519(uint8_t mypublic[static CURVE25519_KEY_SIZE], const uint8_t secret[static CURVE25519_KEY_SIZE], const uint8_t basepoint[static CURVE25519_KEY_SIZE]);
|
|
|
|
void curve25519_generate_public(uint8_t pub[static CURVE25519_KEY_SIZE], const uint8_t secret[static CURVE25519_KEY_SIZE]);
|
2019-01-11 04:13:35 -05:00
|
|
|
static inline void curve25519_clamp_secret(uint8_t secret[static CURVE25519_KEY_SIZE])
|
2015-06-05 09:58:00 -04:00
|
|
|
{
|
|
|
|
secret[0] &= 248;
|
2019-02-03 15:50:54 -05:00
|
|
|
secret[31] = (secret[31] & 127) | 64;
|
2015-06-05 09:58:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|