Advertisement
Guest User

Untitled

a guest
May 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <limits.h>
  4. #include <windows.h>
  5. #include <unistd.h>
  6.  
  7. int main(int argc, char **argv) {
  8.      // AnalyzePath();
  9.      HCRYPTPROV   hCryptProv;
  10.      BYTE         Buffer[16];
  11.      CryptGenRandom(hCryptProv, 8, Buffer);
  12.      printf("%d\n",Buffer );
  13.      return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement