OpenSSL

pchero on December 1st, 2009

#include <stdio.h>#include <openssl/err.h>#include <openssl/rand.h> int main(int argc, char* argv[]){        int i;        int retVal = 0;        // 랜덤 수의 길이는 64로 한다.         int length = 64;        // PRNG에 공급할 seed 생성        RAND_status();        // 생성할 […]

Continue reading about OpenSSL-RANDOM 함수 사용하기