lokinet/include/llarp/crypto.h

118 lines
3.5 KiB
C
Raw Normal View History

2018-01-25 16:24:33 +00:00
#ifndef LLARP_CRYPTO_H_
#define LLARP_CRYPTO_H_
#include <llarp/buffer.h>
2018-11-19 23:27:59 +00:00
#include <llarp/common.hpp>
#include <functional>
2018-01-25 16:24:33 +00:00
#include <stdbool.h>
2018-01-29 14:27:24 +00:00
#include <stdint.h>
2018-05-25 09:17:08 +00:00
/**
* crypto.h
*
* libsodium abstraction layer
* potentially allow libssl support in the future
*/
static constexpr uint32_t PUBKEYSIZE = 32;
static constexpr uint32_t SECKEYSIZE = 64;
static constexpr uint32_t NONCESIZE = 24;
static constexpr uint32_t SHAREDKEYSIZE = 32;
static constexpr uint32_t HASHSIZE = 64;
static constexpr uint32_t SHORTHASHSIZE = 32;
static constexpr uint32_t HMACSECSIZE = 32;
static constexpr uint32_t SIGSIZE = 64;
static constexpr uint32_t TUNNONCESIZE = 32;
static constexpr uint32_t HMACSIZE = 32;
static constexpr uint32_t PATHIDSIZE = 16;
2018-01-25 16:24:33 +00:00
#include <libntrup/ntru.h>
#define PQ_CIPHERTEXTSIZE crypto_kem_CIPHERTEXTBYTES
#define PQ_PUBKEYSIZE crypto_kem_PUBLICKEYBYTES
#define PQ_SECRETKEYSIZE crypto_kem_SECRETKEYBYTES
#define PQ_KEYPAIRSIZE (PQ_SECRETKEYSIZE + PQ_PUBKEYSIZE)
namespace llarp
{
2018-05-25 09:17:08 +00:00
/// label functors
2018-05-28 14:26:16 +00:00
2018-06-20 17:45:44 +00:00
/// PKE(result, publickey, secretkey, nonce)
using path_dh_func = std::function<bool(byte_t *, const byte_t *, const byte_t *,
const byte_t *)>;
/// TKE(result, publickey, secretkey, nonce)
using transport_dh_func = std::function<bool(byte_t *, const byte_t *,
const byte_t *, const byte_t *)>;
2018-05-18 16:08:47 +00:00
2018-05-28 14:26:16 +00:00
/// SD/SE(buffer, key, nonce)
using sym_cipher_func = std::function<bool(llarp_buffer_t, const byte_t *,
const byte_t *)>;
2018-02-01 22:04:58 +00:00
2018-05-28 14:26:16 +00:00
/// H(result, body)
using hash_func = std::function<bool(byte_t *, llarp_buffer_t)>;
2018-02-01 22:04:58 +00:00
2018-05-28 14:26:16 +00:00
/// SH(result, body)
using shorthash_func = std::function<bool(byte_t *, llarp_buffer_t)>;
2018-05-18 16:08:47 +00:00
2018-05-28 14:26:16 +00:00
/// MDS(result, body, shared_secret)
using hmac_func = std::function<bool(byte_t *, llarp_buffer_t, const byte_t *)>;
2018-02-01 22:34:04 +00:00
2018-05-28 14:26:16 +00:00
/// S(sig, secretkey, body)
using sign_func = std::function<bool(byte_t *, const byte_t *, llarp_buffer_t)>;
2018-01-31 19:59:26 +00:00
2018-08-31 13:51:24 +00:00
/// V(pubkey, body, sig)
using verify_func = std::function<bool(const byte_t *, llarp_buffer_t,
const byte_t *)>;
2018-02-01 22:34:04 +00:00
2018-05-25 09:17:08 +00:00
/// library crypto configuration
struct Crypto
{
2018-05-28 14:26:16 +00:00
/// xchacha symettric cipher
sym_cipher_func xchacha20;
2018-05-28 14:26:16 +00:00
/// path dh creator's side
path_dh_func dh_client;
2018-05-28 14:26:16 +00:00
/// path dh relay side
path_dh_func dh_server;
2018-05-28 14:26:16 +00:00
/// transport dh client side
transport_dh_func transport_dh_client;
2018-05-28 14:26:16 +00:00
/// transport dh server side
transport_dh_func transport_dh_server;
2018-05-28 14:26:16 +00:00
/// blake2b 512 bit
hash_func hash;
2018-05-28 14:26:16 +00:00
/// blake2b 256 bit
shorthash_func shorthash;
2018-05-28 14:26:16 +00:00
/// blake2s 256 bit hmac
hmac_func hmac;
2018-05-28 14:26:16 +00:00
/// ed25519 sign
sign_func sign;
2018-05-28 14:26:16 +00:00
/// ed25519 verify
verify_func verify;
2018-05-28 14:26:16 +00:00
/// randomize buffer
std::function<void(llarp_buffer_t)> randomize;
2018-05-28 14:26:16 +00:00
/// randomizer memory
std::function<void(void *, size_t)> randbytes;
2018-05-28 14:26:16 +00:00
/// generate signing keypair
std::function<void(byte_t *)> identity_keygen;
2018-05-28 14:26:16 +00:00
/// generate encryption keypair
std::function<void(byte_t *)> encryption_keygen;
/// generate post quantum encrytion key
std::function<void(byte_t *)> pqe_keygen;
/// post quantum decrypt (buffer, sharedkey_dst, sec)
std::function<bool(const byte_t *, byte_t *, const byte_t *)> pqe_decrypt;
/// post quantum encrypt (buffer, sharedkey_dst, pub)
std::function<bool(byte_t *, byte_t *, const byte_t *)> pqe_encrypt;
2018-01-25 16:24:33 +00:00
// Give a basic type tag for the constructor to pick libsodium
struct sodium {};
Crypto(Crypto::sodium tag);
};
2018-01-25 16:24:33 +00:00
2018-07-20 04:50:28 +00:00
/// return random 64bit unsigned interger
uint64_t
randint();
}
2018-07-20 04:50:28 +00:00
2018-01-25 16:24:33 +00:00
#endif