xmss-KAT-generator/wots.h

38 líneas
1.2 KiB
C
Original Vista normal Histórico

#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
/**
* WOTS key generation. Takes a 32 byte seed for the secret key, expands it to
* a full WOTS secret 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,
unsigned char *pk, const unsigned char *sk,
const unsigned char *pub_seed, uint32_t addr[8]);
2015-08-11 11:08:27 +01:00
/**
* Takes a m-byte message and the 32-byte seed for the secret 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,
const unsigned char *sk, const unsigned char *pub_seed,
uint32_t addr[8]);
2015-08-11 11:08:27 +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
*/
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