Add the X448() and X448_public_from_private() functions
[openssl.git] / crypto / ec / curve448 / curve448_lcl.h
1 #include "curve448utils.h"
2
3 int X448(uint8_t out_shared_key[56], const uint8_t private_key[56],
4          const uint8_t peer_public_value[56]) DECAF_API_VIS;
5
6 void X448_public_from_private(uint8_t out_public_value[56],
7                               const uint8_t private_key[56]) DECAF_API_VIS;