This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string> | |
#include <string_view> | |
#include <openssl/err.h> | |
#include <openssl/evp.h> | |
#include <openssl/x509.h> | |
constexpr size_t k25519PrivateKeyBytes = 32; | |
constexpr size_t k25519PublicKeyBytes = 32; | |
char private_key[k25519PrivateKeyBytes]; |