aboutsummaryrefslogtreecommitdiffstats
path: root/doc/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-03-21 15:25:56 +0000
committerBodo Möller <bodo@openssl.org>2001-03-21 15:25:56 +0000
commitfba904649075e0881fb5a39ba6cf9ac493408c0c (patch)
treef788f0d44b0ff5cd979a13079c9b112a56af06fa /doc/crypto
parent8a2908a24a7161c8aade1a4b307bd59f038faba5 (diff)
downloadopenssl-fba904649075e0881fb5a39ba6cf9ac493408c0c.tar.gz
Update docs.
Diffstat (limited to 'doc/crypto')
-rw-r--r--doc/crypto/RAND_load_file.pod2
-rw-r--r--doc/crypto/rand.pod12
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/crypto/RAND_load_file.pod b/doc/crypto/RAND_load_file.pod
index 8dd700ca3d..d8c134e621 100644
--- a/doc/crypto/RAND_load_file.pod
+++ b/doc/crypto/RAND_load_file.pod
@@ -8,7 +8,7 @@ RAND_load_file, RAND_write_file, RAND_file_name - PRNG seed file
#include <openssl/rand.h>
- const char *RAND_file_name(char *buf, int num);
+ const char *RAND_file_name(char *buf, size_t num);
int RAND_load_file(const char *filename, long max_bytes);
diff --git a/doc/crypto/rand.pod b/doc/crypto/rand.pod
index 295b681050..9545f0e109 100644
--- a/doc/crypto/rand.pod
+++ b/doc/crypto/rand.pod
@@ -8,17 +8,17 @@ rand - pseudo-random number generator
#include <openssl/rand.h>
- int RAND_bytes(unsigned char *buf,int num);
- int RAND_pseudo_bytes(unsigned char *buf,int num);
+ int RAND_bytes(unsigned char *buf, int num);
+ int RAND_pseudo_bytes(unsigned char *buf, int num);
- void RAND_seed(const void *buf,int num);
- void RAND_add(const void *buf,int num,int entropy);
+ void RAND_seed(const void *buf, int num);
+ void RAND_add(const void *buf, int num, int entropy);
int RAND_status(void);
void RAND_screen(void);
- int RAND_load_file(const char *file,long max_bytes);
+ int RAND_load_file(const char *file, long max_bytes);
int RAND_write_file(const char *file);
- const char *RAND_file_name(char *file,int num);
+ const char *RAND_file_name(char *file, size_t num);
int RAND_egd(const char *path);