xmss-KAT-generator/wots.h

38 řádky
1.2 KiB
C
Surový Normální zobrazení Historie

#ifndef XMSS_WOTS_H
#define XMSS_WOTS_H
2015-08-11 11:08:27 +01:00
#include <stdint.h>
#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.
* 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'.
2015-08-11 11:08:27 +01:00
*/
void wots_pkgen(const xmss_params *params,
2017-10-23 14:54:14 +01:00
unsigned char *pk, const unsigned char *seed,
const unsigned char *pub_seed, uint32_t addr[8]);
2015-08-11 11:08:27 +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'.
2015-08-11 11:08:27 +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,
uint32_t addr[8]);
2015-08-11 11:08:27 +01:00
/**
* Takes a WOTS signature and an n-byte message, computes a WOTS public key.
*
* Writes the computed public key to 'pk'.
2015-08-11 11:08:27 +01:00
*/
void wots_pk_from_sig(const xmss_params *params, unsigned char *pk,
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