a655ec8a9d
* Add state destroy to SHA2 API * Include optimized SPHINCS+ implementations I've generated new implementations from the sphincsplus repository. * Don't destroy sha256ctx after finalize * Attempt to shut up MSVC * Make sure to drop errors in rmtree
33 lines
1.3 KiB
C
33 lines
1.3 KiB
C
#ifndef PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_FORS_H
|
|
#define PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_FORS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "hash_state.h"
|
|
#include "params.h"
|
|
|
|
/**
|
|
* Signs a message m, deriving the secret key from sk_seed and the FTS address.
|
|
* Assumes m contains at least PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_FORS_HEIGHT * PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_FORS_TREES bits.
|
|
*/
|
|
void PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_fors_sign(
|
|
unsigned char *sig, unsigned char *pk,
|
|
const unsigned char *m,
|
|
const unsigned char *sk_seed, const unsigned char *pub_seed,
|
|
const uint32_t fors_addr[8], const hash_state *hash_state_seeded);
|
|
|
|
/**
|
|
* Derives the FORS public key from a signature.
|
|
* This can be used for verification by comparing to a known public key, or to
|
|
* subsequently verify a signature on the derived public key. The latter is the
|
|
* typical use-case when used as an FTS below an OTS in a hypertree.
|
|
* Assumes m contains at least PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_FORS_HEIGHT * PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_FORS_TREES bits.
|
|
*/
|
|
void PQCLEAN_SPHINCSSHA256256FROBUST_CLEAN_fors_pk_from_sig(
|
|
unsigned char *pk,
|
|
const unsigned char *sig, const unsigned char *m,
|
|
const unsigned char *pub_seed, const uint32_t fors_addr[8],
|
|
const hash_state *hash_state_seeded);
|
|
|
|
#endif
|