25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

59 satır
1.8 KiB

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