2017-10-19 15:04:42 +01:00
|
|
|
#ifndef XMSS_WOTS_H
|
|
|
|
#define XMSS_WOTS_H
|
2015-08-11 11:08:27 +01:00
|
|
|
|
2017-06-02 16:29:14 +01:00
|
|
|
#include <stdint.h>
|
2017-10-16 10:58:45 +01:00
|
|
|
#include "params.h"
|
2016-07-11 10:15:16 +01:00
|
|
|
|
2015-08-11 11:08:27 +01:00
|
|
|
/**
|
2017-10-23 14:54:14 +01:00
|
|
|
* 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.
|
2017-10-23 13:10:39 +01:00
|
|
|
* It requires the seed pub_seed (used to generate bitmasks and hash keys)
|
|
|
|
* and the address of this WOTS key pair.
|
2017-06-02 13:10:24 +01:00
|
|
|
*
|
2017-10-23 13:10:39 +01:00
|
|
|
* Writes the computed public key to 'pk'.
|
2015-08-11 11:08:27 +01:00
|
|
|
*/
|
2017-10-16 10:58:45 +01:00
|
|
|
void wots_pkgen(const xmss_params *params,
|
2017-10-23 14:54:14 +01:00
|
|
|
unsigned char *pk, const unsigned char *seed,
|
2017-08-03 16:38:34 +01:00
|
|
|
const unsigned char *pub_seed, uint32_t addr[8]);
|
2015-08-11 11:08:27 +01:00
|
|
|
|
|
|
|
/**
|
2017-10-23 14:54:14 +01:00
|
|
|
* Takes a m-byte message and the 32-byte seed for the private key to compute a
|
2017-10-23 13:10:39 +01:00
|
|
|
* signature that is placed at 'sig'.
|
2015-08-11 11:08:27 +01:00
|
|
|
*/
|
2017-10-16 10:58:45 +01:00
|
|
|
void wots_sign(const xmss_params *params,
|
|
|
|
unsigned char *sig, const unsigned char *msg,
|
2017-10-23 14:54:14 +01:00
|
|
|
const unsigned char *seed, const unsigned char *pub_seed,
|
2017-08-03 16:38:34 +01:00
|
|
|
uint32_t addr[8]);
|
2015-08-11 11:08:27 +01:00
|
|
|
|
|
|
|
/**
|
2017-10-23 13:10:39 +01:00
|
|
|
* Takes a WOTS signature and an m-byte message, computes a WOTS public key.
|
|
|
|
*
|
|
|
|
* Writes the computed public key to 'pk'.
|
2015-08-11 11:08:27 +01:00
|
|
|
*/
|
2017-10-16 10:58:45 +01:00
|
|
|
void wots_pk_from_sig(const xmss_params *params, unsigned char *pk,
|
2017-08-03 16:38:34 +01:00
|
|
|
const unsigned char *sig, const unsigned char *msg,
|
|
|
|
const unsigned char *pub_seed, uint32_t addr[8]);
|
2015-08-11 11:08:27 +01:00
|
|
|
|
|
|
|
#endif
|