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