2019-04-16 14:15:03 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "address.h"
|
|
|
|
#include "params.h"
|
|
|
|
#include "thash.h"
|
|
|
|
|
|
|
|
#include "haraka.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes an array of inblocks concatenated arrays of SPX_N bytes.
|
|
|
|
*/
|
|
|
|
static void PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_thash(
|
|
|
|
unsigned char *out, unsigned char *buf,
|
|
|
|
const unsigned char *in, unsigned int inblocks,
|
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 outbuf[32];
|
|
|
|
unsigned char buf_tmp[64];
|
|
|
|
|
|
|
|
(void)pub_seed; /* Suppress an 'unused parameter' warning. */
|
|
|
|
|
|
|
|
if (inblocks == 1) {
|
|
|
|
/* F function */
|
|
|
|
/* Since SPX_N may be smaller than 32, we need a temporary buffer. */
|
|
|
|
memset(buf_tmp, 0, 64);
|
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_addr_to_bytes(buf_tmp, addr);
|
|
|
|
memcpy(buf_tmp + SPX_ADDR_BYTES, in, SPX_N);
|
|
|
|
|
2019-07-17 07:37:14 +01:00
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_haraka512(outbuf, buf_tmp, hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
memcpy(out, outbuf, SPX_N);
|
|
|
|
} else {
|
|
|
|
/* All other tweakable hashes*/
|
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_addr_to_bytes(buf, addr);
|
|
|
|
memcpy(buf + SPX_ADDR_BYTES, in, inblocks * SPX_N);
|
|
|
|
|
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_haraka_S(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, SPX_N, buf, SPX_ADDR_BYTES + inblocks * SPX_N, hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The wrappers below ensure that we use fixed-size buffers on the stack */
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSHARAKA128SSIMPLE_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_ADDR_BYTES + 1 * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, 1, pub_seed, addr, hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSHARAKA128SSIMPLE_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_ADDR_BYTES + 2 * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, 2, pub_seed, addr, hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSHARAKA128SSIMPLE_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_ADDR_BYTES + SPX_WOTS_LEN * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, SPX_WOTS_LEN, pub_seed, addr, hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PQCLEAN_SPHINCSHARAKA128SSIMPLE_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_ADDR_BYTES + SPX_FORS_TREES * SPX_N];
|
|
|
|
PQCLEAN_SPHINCSHARAKA128SSIMPLE_CLEAN_thash(
|
2019-07-17 07:37:14 +01:00
|
|
|
out, buf, in, SPX_FORS_TREES, pub_seed, addr, hash_state_seeded);
|
2019-04-16 14:15:03 +01:00
|
|
|
}
|