2019-04-16 14:15:03 +01:00
|
|
|
#ifndef SPX_WOTS_H
|
|
|
|
#define SPX_WOTS_H
|
|
|
|
|
|
|
|
#include "params.h"
|
2019-07-17 07:37:14 +01:00
|
|
|
#include "hash_state.h"
|
2019-04-16 14:15:03 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WOTS key generation. Takes a 32 byte seed for the private key, expands it to
|
|
|
|
* a full WOTS private key and computes the corresponding public key.
|
|
|
|
* It requires the seed pub_seed (used to generate bitmasks and hash keys)
|
|
|
|
* and the address of this WOTS key pair.
|
|
|
|
*
|
|
|
|
* Writes the computed public key to 'pk'.
|
|
|
|
*/
|
|
|
|
void PQCLEAN_SPHINCSHARAKA256SROBUST_CLEAN_wots_gen_pk(
|
|
|
|
unsigned char *pk, const unsigned char *sk_seed,
|
2019-06-21 13:34:36 +01:00
|
|
|
const unsigned char *pub_seed, uint32_t addr[8],
|
2019-07-17 07:37:14 +01:00
|
|
|
const hash_state *hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a n-byte message and the 32-byte seed for the private key to compute a
|
|
|
|
* signature that is placed at 'sig'.
|
|
|
|
*/
|
|
|
|
void PQCLEAN_SPHINCSHARAKA256SROBUST_CLEAN_wots_sign(
|
|
|
|
unsigned char *sig, const unsigned char *msg,
|
|
|
|
const unsigned char *sk_seed, const unsigned char *pub_seed,
|
2019-07-17 07:37:14 +01:00
|
|
|
uint32_t addr[8], const hash_state *hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a WOTS signature and an n-byte message, computes a WOTS public key.
|
|
|
|
*
|
|
|
|
* Writes the computed public key to 'pk'.
|
|
|
|
*/
|
|
|
|
void PQCLEAN_SPHINCSHARAKA256SROBUST_CLEAN_wots_pk_from_sig(
|
|
|
|
unsigned char *pk,
|
|
|
|
const unsigned char *sig, const unsigned char *msg,
|
2019-06-21 13:34:36 +01:00
|
|
|
const unsigned char *pub_seed, uint32_t addr[8],
|
2019-07-17 07:37:14 +01:00
|
|
|
const hash_state *hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
|
|
|
|
#endif
|