10 lines
197 B
C++
10 lines
197 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
#include "config.hpp"
|
|
|
|
void x25519GenerateEphemeral(AppConfig &config);
|
|
|
|
void x25519ComputeShared(AppConfig &config, const uint8_t otherPub[32]);
|