Skip to content

Instantly share code, notes, and snippets.

View richsalz's full-sized avatar

Rich Salz richsalz

View GitHub Profile
#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];