1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 02:49:02 +00:00
trezor-firmware/extmod/modtrezorcrypto/ssss.h
2016-09-27 17:25:50 +02:00

11 lines
248 B
C

#ifndef __SSSS_H__
#define __SSSS_H__
#include <stdbool.h>
#include "trezor-crypto/bignum.h"
bool ssss_split(const bignum256 *secret, int m, int n, bignum256 *shares);
bool ssss_combine(const bignum256 *shares, int n, bignum256 *secret);
#endif