xmss-KAT-generator/wots.h

34 lines
1.1 KiB
C
Raw Normal View History

/*
2016-09-22 15:31:41 +01:00
wots.h version 20160722
Andreas Hülsing
Joost Rijneveld
Public domain.
*/
2015-08-11 11:08:27 +01:00
#ifndef WOTS_H
#define WOTS_H
#include <stdint.h>
2016-07-11 10:15:16 +01:00
2015-08-11 11:08:27 +01:00
/**
* WOTS key generation. Takes a 32byte seed for the secret key, expands it to a full WOTS secret key and computes the corresponding public key.
* For this it takes the seed pub_seed which is used to generate bitmasks and hash keys and the address of this WOTS key pair addr
*
2015-08-11 11:08:27 +01:00
* Places the computed public key at address pk.
*/
void wots_pkgen(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(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, a m-byte message and computes a WOTS public key that it places at pk.
*
2015-08-11 11:08:27 +01:00
*/
void wots_pkFromSig(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