Deleted Added
full compact
rand.pod (59191) rand.pod (76866)
1=pod
2
3=head1 NAME
4
5rand - pseudo-random number generator
6
7=head1 SYNOPSIS
8
9 #include <openssl/rand.h>
10
1=pod
2
3=head1 NAME
4
5rand - pseudo-random number generator
6
7=head1 SYNOPSIS
8
9 #include <openssl/rand.h>
10
11 int RAND_bytes(unsigned char *buf,int num);
12 int RAND_pseudo_bytes(unsigned char *buf,int num);
11 int RAND_bytes(unsigned char *buf, int num);
12 int RAND_pseudo_bytes(unsigned char *buf, int num);
13
13
14 void RAND_seed(const void *buf,int num);
15 void RAND_add(const void *buf,int num,int entropy);
14 void RAND_seed(const void *buf, int num);
15 void RAND_add(const void *buf, int num, int entropy);
16 int RAND_status(void);
17 void RAND_screen(void);
18
16 int RAND_status(void);
17 void RAND_screen(void);
18
19 int RAND_load_file(const char *file,long max_bytes);
19 int RAND_load_file(const char *file, long max_bytes);
20 int RAND_write_file(const char *file);
20 int RAND_write_file(const char *file);
21 const char *RAND_file_name(char *file,int num);
21 const char *RAND_file_name(char *file, size_t num);
22
23 int RAND_egd(const char *path);
24
25 void RAND_set_rand_method(RAND_METHOD *meth);
26 RAND_METHOD *RAND_get_rand_method(void);
27 RAND_METHOD *RAND_SSLeay(void);
28
29 void RAND_cleanup(void);

--- 129 unchanged lines hidden ---
22
23 int RAND_egd(const char *path);
24
25 void RAND_set_rand_method(RAND_METHOD *meth);
26 RAND_METHOD *RAND_get_rand_method(void);
27 RAND_METHOD *RAND_SSLeay(void);
28
29 void RAND_cleanup(void);

--- 129 unchanged lines hidden ---