2019-04-16 14:15:03 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "address.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 "thash.h"
|
|
|
|
|
|
|
|
#include "fips202.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes an array of inblocks concatenated arrays of SPX_N bytes.
|
|
|
|
*/
|
|
|
|
static void PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash(
|
|
|
|
unsigned char *out, unsigned char *buf,
|
|
|
|
const unsigned char *in, unsigned int inblocks,
|
2019-07-17 07:37:14 +01:00
|
|
|
const unsigned char *pub_seed, uint32_t addr[8]) {
|
2019-04-16 14:15:03 +01:00
|
|
|
|
|
|
|
memcpy(buf, pub_seed, SPX_N);
|
|
|
|
PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_addr_to_bytes(buf + SPX_N, addr);
|
|
|
|
memcpy(buf + SPX_N + SPX_ADDR_BYTES, in, inblocks * SPX_N);
|
|
|
|
|
|
|
|
shake256(out, SPX_N, buf, SPX_N + SPX_ADDR_BYTES + inblocks * SPX_N);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The wrappers below ensure that we use fixed-size buffers on the stack */
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash_1(
|
|
|
|
unsigned char *out, const unsigned char *in,
|
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
|
|
|
|
|
|
|
unsigned char buf[SPX_N + SPX_ADDR_BYTES + 1 * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, 1, pub_seed, addr);
|
|
|
|
|
|
|
|
(void)hash_state_seeded; /* Avoid unused parameter warning. */
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash_2(
|
|
|
|
unsigned char *out, const unsigned char *in,
|
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
|
|
|
|
|
|
|
unsigned char buf[SPX_N + SPX_ADDR_BYTES + 2 * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, 2, pub_seed, addr);
|
|
|
|
|
|
|
|
(void)hash_state_seeded; /* Avoid unused parameter warning. */
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash_WOTS_LEN(
|
|
|
|
unsigned char *out, const unsigned char *in,
|
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
|
|
|
|
|
|
|
unsigned char buf[SPX_N + SPX_ADDR_BYTES + SPX_WOTS_LEN * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, SPX_WOTS_LEN, pub_seed, addr);
|
|
|
|
|
|
|
|
(void)hash_state_seeded; /* Avoid unused parameter warning. */
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash_FORS_TREES(
|
|
|
|
unsigned char *out, const unsigned char *in,
|
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
|
|
|
|
|
|
|
unsigned char buf[SPX_N + SPX_ADDR_BYTES + SPX_FORS_TREES * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSSHAKE256128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, SPX_FORS_TREES, pub_seed, addr);
|
|
|
|
|
|
|
|
(void)hash_state_seeded; /* Avoid unused parameter warning. */
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|