選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

utils.h 399 B

123456789101112131415
  1. #ifndef XMSS_UTILS_H
  2. #define XMSS_UTILS_H
  3. /**
  4. * Converts the value of 'in' to 'outlen' bytes in big-endian byte order.
  5. */
  6. void ull_to_bytes(unsigned char *out, unsigned int outlen,
  7. unsigned long long in);
  8. /**
  9. * Converts the inlen bytes in 'in' from big-endian byte order to an integer.
  10. */
  11. unsigned long long bytes_to_ull(const unsigned char *in, unsigned int inlen);
  12. #endif