This repository has been archived on 2024-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
2015-06-05 15:58:00 +02:00
|
|
|
/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
|
|
|
|
|
|
|
|
#ifndef CURVE25519_H
|
|
|
|
#define CURVE25519_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
enum curve25519_lengths {
|
|
|
|
CURVE25519_POINT_SIZE = 32,
|
|
|
|
};
|
|
|
|
|
2016-07-27 11:30:05 +02:00
|
|
|
void curve25519(uint8_t mypublic[static CURVE25519_POINT_SIZE], const uint8_t secret[static CURVE25519_POINT_SIZE], const uint8_t basepoint[static CURVE25519_POINT_SIZE]);
|
|
|
|
void curve25519_generate_public(uint8_t pub[static CURVE25519_POINT_SIZE], const uint8_t secret[static CURVE25519_POINT_SIZE]);
|
|
|
|
static inline void curve25519_normalize_secret(uint8_t secret[static CURVE25519_POINT_SIZE])
|
2015-06-05 15:58:00 +02:00
|
|
|
{
|
|
|
|
secret[0] &= 248;
|
|
|
|
secret[31] &= 127;
|
|
|
|
secret[31] |= 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|