mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-12 17:10:04 +00:00
14 lines
299 B
C
14 lines
299 B
C
#ifndef LAIKA_RSA_H
|
|
#define LAIKA_RSA_H
|
|
|
|
#include "sodium.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define LAIKAENC_SIZE(sz) (sz + crypto_box_SEALBYTES)
|
|
|
|
bool laikaK_loadKeys(uint8_t *outPub, uint8_t *outPriv, const char *inPub, const char *inPriv);
|
|
bool laikaK_genKeys(uint8_t *outPub, uint8_t *outPriv);
|
|
|
|
#endif
|