2018-01-25 16:24:33 +00:00
|
|
|
#ifndef LLARP_CRYPTO_H_
|
|
|
|
#define LLARP_CRYPTO_H_
|
|
|
|
#include <llarp/buffer.h>
|
|
|
|
#include <stdbool.h>
|
2018-01-29 14:27:24 +00:00
|
|
|
#include <stdint.h>
|
2018-01-25 16:24:33 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PUBKEYSIZE 32
|
|
|
|
#define SECKEYSIZE 32
|
|
|
|
#define NOUNCESIZE 24
|
|
|
|
#define SHAREDKEYSIZE 32
|
|
|
|
#define HASHSIZE 64
|
|
|
|
#define HMACSECSIZE 32
|
|
|
|
#define SIGSIZE 64
|
|
|
|
#define TUNNOUNCESIZE 32
|
|
|
|
|
2018-01-29 14:27:24 +00:00
|
|
|
typedef uint8_t llarp_pubkey_t[PUBKEYSIZE];
|
|
|
|
typedef uint8_t llarp_seckey_t[SECKEYSIZE];
|
|
|
|
typedef uint8_t llarp_nounce_t[NOUNCESIZE];
|
|
|
|
typedef uint8_t llarp_sharedkey_t[SHAREDKEYSIZE];
|
|
|
|
typedef uint8_t llarp_hash_t[HASHSIZE];
|
|
|
|
typedef uint8_t llarp_hmacsec_t[HMACSECSIZE];
|
|
|
|
typedef uint8_t llarp_sig_t[SIGSIZE];
|
|
|
|
typedef uint8_t llarp_tunnel_nounce_t[TUNNOUNCESIZE];
|
2018-01-25 16:24:33 +00:00
|
|
|
|
2018-02-01 13:21:00 +00:00
|
|
|
struct llarp_keypair {
|
2018-01-31 19:59:26 +00:00
|
|
|
llarp_pubkey_t pub;
|
|
|
|
llarp_seckey_t sec;
|
|
|
|
};
|
|
|
|
|
2018-02-01 13:21:00 +00:00
|
|
|
typedef bool (*llarp_dh_func)(llarp_sharedkey_t *, llarp_pubkey_t,
|
|
|
|
llarp_tunnel_nounce_t, llarp_seckey_t);
|
2018-01-31 19:59:26 +00:00
|
|
|
|
2018-01-29 14:27:24 +00:00
|
|
|
struct llarp_crypto {
|
|
|
|
bool (*xchacha20)(llarp_buffer_t, llarp_sharedkey_t, llarp_nounce_t);
|
2018-01-31 19:59:26 +00:00
|
|
|
llarp_dh_func dh_client;
|
|
|
|
llarp_dh_func dh_server;
|
2018-01-29 14:27:24 +00:00
|
|
|
bool (*hash)(llarp_hash_t *, llarp_buffer_t);
|
|
|
|
bool (*hmac)(llarp_hash_t *, llarp_buffer_t, llarp_hmacsec_t);
|
|
|
|
bool (*sign)(llarp_sig_t *, llarp_seckey_t, llarp_buffer_t);
|
|
|
|
bool (*verify)(llarp_pubkey_t, llarp_buffer_t, llarp_sig_t);
|
2018-01-31 19:59:26 +00:00
|
|
|
void (*randomize)(llarp_buffer_t);
|
|
|
|
void (*keygen)(struct llarp_keypair *);
|
2018-01-29 14:27:24 +00:00
|
|
|
};
|
2018-01-25 16:24:33 +00:00
|
|
|
|
2018-01-29 14:27:24 +00:00
|
|
|
void llarp_crypto_libsodium_init(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
|