2018-01-25 16:24:33 +00:00
|
|
|
#ifndef LLARP_CRYPTO_H_
|
|
|
|
#define LLARP_CRYPTO_H_
|
|
|
|
#include <llarp/buffer.h>
|
2018-04-05 14:43:16 +00:00
|
|
|
#include <llarp/common.h>
|
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
|
|
|
|
*/
|
|
|
|
|
2018-01-25 16:24:33 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PUBKEYSIZE 32
|
2018-02-01 22:04:58 +00:00
|
|
|
#define SECKEYSIZE 64
|
2018-05-22 15:54:19 +00:00
|
|
|
#define NONCESIZE 24
|
2018-01-25 16:24:33 +00:00
|
|
|
#define SHAREDKEYSIZE 32
|
|
|
|
#define HASHSIZE 64
|
2018-05-18 16:08:47 +00:00
|
|
|
#define SHORTHASHSIZE 32
|
2018-01-25 16:24:33 +00:00
|
|
|
#define HMACSECSIZE 32
|
|
|
|
#define SIGSIZE 64
|
2018-05-22 15:54:19 +00:00
|
|
|
#define TUNNONCESIZE 32
|
2018-05-20 13:43:42 +00:00
|
|
|
#define HMACSIZE 32
|
2018-06-19 17:11:24 +00:00
|
|
|
#define PATHIDSIZE 16
|
2018-01-25 16:24:33 +00:00
|
|
|
|
2018-06-12 11:57:14 +00:00
|
|
|
/*
|
2018-05-22 15:54:19 +00:00
|
|
|
typedef byte_t llarp_pubkey_t[PUBKEYSIZE];
|
|
|
|
typedef byte_t llarp_seckey_t[SECKEYSIZE];
|
|
|
|
typedef byte_t llarp_nonce_t[NONCESIZE];
|
|
|
|
typedef byte_t llarp_sharedkey_t[SHAREDKEYSIZE];
|
|
|
|
typedef byte_t llarp_hash_t[HASHSIZE];
|
|
|
|
typedef byte_t llarp_shorthash_t[SHORTHASHSIZE];
|
|
|
|
typedef byte_t llarp_hmac_t[HMACSIZE];
|
|
|
|
typedef byte_t llarp_hmacsec_t[HMACSECSIZE];
|
|
|
|
typedef byte_t llarp_sig_t[SIGSIZE];
|
|
|
|
typedef byte_t llarp_tunnel_nonce_t[TUNNONCESIZE];
|
2018-06-12 11:57:14 +00:00
|
|
|
*/
|
2018-05-22 15:54:19 +00:00
|
|
|
|
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)
|
2018-06-10 14:05:48 +00:00
|
|
|
typedef bool (*llarp_path_dh_func)(byte_t *, byte_t *, byte_t *, byte_t *);
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2018-06-22 13:59:28 +00:00
|
|
|
/// TKE(result, publickey, secretkey, nonce)
|
2018-05-22 15:54:19 +00:00
|
|
|
typedef bool (*llarp_transport_dh_func)(byte_t *, byte_t *, byte_t *, byte_t *);
|
2018-05-18 16:08:47 +00:00
|
|
|
|
2018-05-28 14:26:16 +00:00
|
|
|
/// SD/SE(buffer, key, nonce)
|
2018-06-12 11:57:14 +00:00
|
|
|
typedef bool (*llarp_sym_cipher_func)(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)
|
2018-05-22 15:54:19 +00:00
|
|
|
typedef bool (*llarp_hash_func)(byte_t *, llarp_buffer_t);
|
2018-02-01 22:04:58 +00:00
|
|
|
|
2018-05-28 14:26:16 +00:00
|
|
|
/// SH(result, body)
|
2018-05-22 15:54:19 +00:00
|
|
|
typedef bool (*llarp_shorthash_func)(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)
|
2018-05-22 15:54:19 +00:00
|
|
|
typedef bool (*llarp_hmac_func)(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)
|
2018-05-22 15:54:19 +00:00
|
|
|
typedef bool (*llarp_sign_func)(byte_t *, const byte_t *, llarp_buffer_t);
|
2018-01-31 19:59:26 +00:00
|
|
|
|
2018-05-28 14:26:16 +00:00
|
|
|
/// V(sig, body, secretkey)
|
2018-05-22 15:54:19 +00:00
|
|
|
typedef bool (*llarp_verify_func)(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
|
2018-05-22 15:54:19 +00:00
|
|
|
struct llarp_crypto
|
|
|
|
{
|
2018-05-28 14:26:16 +00:00
|
|
|
/// xchacha symettric cipher
|
2018-02-01 22:04:58 +00:00
|
|
|
llarp_sym_cipher_func xchacha20;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// path dh creator's side
|
2018-06-10 14:05:48 +00:00
|
|
|
llarp_path_dh_func dh_client;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// path dh relay side
|
2018-06-10 14:05:48 +00:00
|
|
|
llarp_path_dh_func dh_server;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// transport dh client side
|
2018-05-18 16:08:47 +00:00
|
|
|
llarp_transport_dh_func transport_dh_client;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// transport dh server side
|
2018-05-18 16:08:47 +00:00
|
|
|
llarp_transport_dh_func transport_dh_server;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// blake2b 512 bit
|
2018-02-01 22:04:58 +00:00
|
|
|
llarp_hash_func hash;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// blake2b 256 bit
|
2018-05-18 16:08:47 +00:00
|
|
|
llarp_shorthash_func shorthash;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// blake2s 256 bit hmac
|
2018-02-01 22:04:58 +00:00
|
|
|
llarp_hmac_func hmac;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// ed25519 sign
|
2018-02-01 22:04:58 +00:00
|
|
|
llarp_sign_func sign;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// ed25519 verify
|
2018-02-01 22:04:58 +00:00
|
|
|
llarp_verify_func verify;
|
2018-05-28 14:26:16 +00:00
|
|
|
/// randomize buffer
|
2018-01-31 19:59:26 +00:00
|
|
|
void (*randomize)(llarp_buffer_t);
|
2018-05-28 14:26:16 +00:00
|
|
|
/// randomizer memory
|
2018-02-01 22:04:58 +00:00
|
|
|
void (*randbytes)(void *, size_t);
|
2018-05-28 14:26:16 +00:00
|
|
|
/// generate signing keypair
|
2018-05-23 20:37:43 +00:00
|
|
|
void (*identity_keygen)(byte_t *);
|
2018-05-28 14:26:16 +00:00
|
|
|
/// generate encryption keypair
|
2018-05-23 20:37:43 +00:00
|
|
|
void (*encryption_keygen)(byte_t *);
|
2018-01-29 14:27:24 +00:00
|
|
|
};
|
2018-01-25 16:24:33 +00:00
|
|
|
|
2018-05-28 14:26:16 +00:00
|
|
|
/// set crypto function pointers to use libsodium
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_crypto_libsodium_init(struct llarp_crypto *c);
|
|
|
|
|
2018-05-28 14:26:16 +00:00
|
|
|
/// check for initialize crypto
|
2018-05-22 15:54:19 +00:00
|
|
|
bool
|
|
|
|
llarp_crypto_initialized(struct llarp_crypto *c);
|
2018-01-25 16:24:33 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2018-01-29 14:27:24 +00:00
|
|
|
|
2018-01-25 16:24:33 +00:00
|
|
|
#endif
|