openssl/crypto/ec/curve448/curve448_lcl.h
Matt Caswell ad0a8a5c9d Add the X448() and X448_public_from_private() functions
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/5105)
2018-02-20 12:59:29 +00:00

7 lines
294 B
C

#include "curve448utils.h"
int X448(uint8_t out_shared_key[56], const uint8_t private_key[56],
const uint8_t peer_public_value[56]) DECAF_API_VIS;
void X448_public_from_private(uint8_t out_public_value[56],
const uint8_t private_key[56]) DECAF_API_VIS;