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

14 行
186 B

  1. #ifndef RANDOMBYTES_H
  2. #define RANDOMBYTES_H
  3. #include <stdint.h>
  4. #ifdef _WIN32
  5. #include <CRTDEFS.H>
  6. #else
  7. #include <unistd.h>
  8. #endif
  9. int randombytes(uint8_t *buf, size_t xlen);
  10. #endif