You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.8 KiB

  1. /*
  2. wots.h version 20160722
  3. Andreas Hülsing
  4. Joost Rijneveld
  5. Public domain.
  6. */
  7. #ifndef WOTS_H
  8. #define WOTS_H
  9. #include "stdint.h"
  10. /**
  11. * WOTS parameter set
  12. *
  13. * Meaning as defined in draft-irtf-cfrg-xmss-hash-based-signatures-02
  14. */
  15. typedef struct {
  16. uint32_t len_1;
  17. uint32_t len_2;
  18. uint32_t len;
  19. uint32_t n;
  20. uint32_t w;
  21. uint32_t log_w;
  22. uint32_t keysize;
  23. unsigned char hash_alg;
  24. } wots_params;
  25. /**
  26. * Set the WOTS parameters,
  27. * only m, n, w are required as inputs,
  28. * len, len_1, and len_2 are computed from those.
  29. *
  30. * Assumes w is a power of 2
  31. */
  32. void wots_set_params(wots_params *params, int n, int w, unsigned char hash_alg);
  33. /**
  34. * 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.
  35. * 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
  36. *
  37. * params, must have been initialized before using wots_set params for params ! This is not done in this function
  38. *
  39. * Places the computed public key at address pk.
  40. */
  41. void wots_pkgen(unsigned char *pk, const unsigned char *sk, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]);
  42. /**
  43. * Takes a m-byte message and the 32-byte seed for the secret key to compute a signature that is placed at "sig".
  44. *
  45. */
  46. void wots_sign(unsigned char *sig, const unsigned char *msg, const unsigned char *sk, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]);
  47. /**
  48. * Takes a WOTS signature, a m-byte message and computes a WOTS public key that it places at pk.
  49. *
  50. */
  51. void wots_pkFromSig(unsigned char *pk, const unsigned char *sig, const unsigned char *msg, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]);
  52. #endif