diff options
Diffstat (limited to 'src/crypto-sodium.h')
-rw-r--r-- | src/crypto-sodium.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/crypto-sodium.h b/src/crypto-sodium.h new file mode 100644 index 0000000..5994056 --- /dev/null +++ b/src/crypto-sodium.h @@ -0,0 +1,39 @@ +#ifndef CRYPTO_SODIUM_H +#define CRYPTO_SODIUM_H 1 + +#include <sodium.h> +#include <stdint.h> + +struct longterm_keypair { + uint8_t publickey[crypto_kx_PUBLICKEYBYTES]; + uint8_t secretkey[crypto_kx_SECRETKEYBYTES]; +}; + +struct longterm_keypair * generate_keypair_from_secretkey_hexstr_sodium(char const * const secretkey_hexstr, + size_t secretkey_hexstr_len) +{ + struct longterm_keypair * keypair = (struct longterm_keypair *)malloc(sizeof(*keypair)); + + if (keypair == NULL) { + return NULL; + } + + if (sodium_hex2bin(keypair->secretkey, sizeof(keypair->secretkey), + secretkey_hexstr, secretkey_hexstr_len, NULL, NULL, NULL) != 0) + { + goto error; + } + + if (crypto_scalarmult_base(keypair->publickey, keypair->secretkey) != 0) { + goto error; + } + + sodium_mlock(keypair, sizeof(*keypair)); + + return keypair; +error: + free(keypair); + return NULL; +} + +#endif |