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.

110 lines
3.3 KiB

  1. /*
  2. xmss.h version 20150811
  3. Andreas Hülsing
  4. Public domain.
  5. */
  6. #include "wots.h"
  7. #ifndef XMSS_H
  8. #define XMSS_H
  9. typedef struct{
  10. int level;
  11. unsigned long long subtree;
  12. int subleaf;
  13. } leafaddr;
  14. typedef struct{
  15. wots_params wots_par;
  16. int n;
  17. int m;
  18. int h;
  19. int k;
  20. } xmss_params;
  21. typedef struct{
  22. xmss_params xmss_par;
  23. int n;
  24. int m;
  25. int h;
  26. int d;
  27. int index_len;
  28. } xmssmt_params;
  29. typedef struct{
  30. int h;
  31. int next_idx;
  32. int stackusage;
  33. unsigned char completed;
  34. unsigned char *node;
  35. } treehash_inst;
  36. typedef struct {
  37. unsigned char *stack;
  38. int stackoffset;
  39. unsigned char *stacklevels;
  40. unsigned char *auth;
  41. unsigned char *keep;
  42. treehash_inst *treehash;
  43. unsigned char *retain;
  44. } bds_state;
  45. /**
  46. * Initialize BDS state struct
  47. * parameter names are the same as used in the description of the BDS traversal
  48. */
  49. void xmss_set_bds_state(bds_state *state, unsigned char *stack, int stackoffset, unsigned char *stacklevels, unsigned char *auth, unsigned char *keep, treehash_inst *treehash, unsigned char *retain);
  50. /**
  51. * Initializes parameter set.
  52. * Needed, for any of the other methods.
  53. */
  54. void xmss_set_params(xmss_params *params, int m, int n, int h, int w, int k);
  55. /**
  56. * Initialize xmssmt_params struct
  57. * parameter names are the same as in the draft
  58. *
  59. * Especially h is the total tree height, i.e. the XMSS trees have height h/d
  60. */
  61. void xmssmt_set_params(xmssmt_params *params, int m, int n, int h, int d, int w, int k);
  62. /**
  63. * Generates a XMSS key pair for a given parameter set.
  64. * Format sk: [(32bit) idx || SK_SEED || SK_PRF || PUB_SEED]
  65. * Format pk: [root || PUB_SEED] omitting algo oid.
  66. */
  67. int xmss_keypair(unsigned char *pk, unsigned char *sk, bds_state *state, xmss_params *params);
  68. /**
  69. * Signs a message.
  70. * Returns
  71. * 1. an array containing the signature followed by the message AND
  72. * 2. an updated secret key!
  73. *
  74. */
  75. int xmss_sign(unsigned char *sk, bds_state *state, unsigned char *sig_msg, unsigned long long *sig_msg_len, const unsigned char *msg,unsigned long long msglen, const xmss_params *params);
  76. /**
  77. * Verifies a given message signature pair under a given public key.
  78. *
  79. * Note: msg and msglen are pure outputs which carry the message in case verification succeeds. The (input) message is assumed to be within sig_msg which has the form (sig||msg).
  80. */
  81. int xmss_sign_open(unsigned char *msg,unsigned long long *msglen, const unsigned char *sig_msg,unsigned long long sig_msg_len, const unsigned char *pk, const xmss_params *params);
  82. /*
  83. * Generates a XMSSMT key pair for a given parameter set.
  84. * Format sk: [(ceil(h/8) bit) idx || SK_SEED || SK_PRF || PUB_SEED]
  85. * Format pk: [root || PUB_SEED] omitting algo oid.
  86. */
  87. int xmssmt_keypair(unsigned char *pk, unsigned char *sk, bds_state *state, xmssmt_params *params);
  88. /**
  89. * Signs a message.
  90. * Returns
  91. * 1. an array containing the signature followed by the message AND
  92. * 2. an updated secret key!
  93. *
  94. */
  95. int xmssmt_sign(unsigned char *sk, bds_state *state, unsigned char *sig_msg, unsigned long long *sig_msg_len, const unsigned char *msg, unsigned long long msglen, const xmssmt_params *params);
  96. /**
  97. * Verifies a given message signature pair under a given public key.
  98. */
  99. int xmssmt_sign_open(unsigned char *msg, unsigned long long *msglen, const unsigned char *sig_msg, unsigned long long sig_msg_len, const unsigned char *pk, const xmssmt_params *params);
  100. #endif