diff options
author | Ulf Möller <ulf@openssl.org> | 2000-02-03 23:23:24 +0000 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2000-02-03 23:23:24 +0000 |
commit | 657e60fa00ddde3618600d6306be913214d30457 (patch) | |
tree | 6ea080becb16ab3d808ec45064b17b7fedb745a2 /crypto/rand/md_rand.c | |
parent | 9dbc41d7eed7d69da54dc81082794845c50ad482 (diff) | |
download | openssl-new-657e60fa00ddde3618600d6306be913214d30457.tar.gz |
ispell (and minor modifications)
Diffstat (limited to 'crypto/rand/md_rand.c')
-rw-r--r-- | crypto/rand/md_rand.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/rand/md_rand.c b/crypto/rand/md_rand.c index 88095b109d..df3a9e6068 100644 --- a/crypto/rand/md_rand.c +++ b/crypto/rand/md_rand.c @@ -497,12 +497,12 @@ static int ssleay_rand_pseudo_bytes(unsigned char *buf, int num) */ /* * I have modified the loading of bytes via RAND_seed() mechanism since - * the origional would have been very very CPU intensive since RAND_seed() + * the original would have been very very CPU intensive since RAND_seed() * does an MD5 per 16 bytes of input. The cost to digest 16 bytes is the same * as that to digest 56 bytes. So under the old system, a screen of - * 1024*768*256 would have been CPU cost of approximatly 49,000 56 byte MD5 + * 1024*768*256 would have been CPU cost of approximately 49,000 56 byte MD5 * digests or digesting 2.7 mbytes. What I have put in place would - * be 48 16k MD5 digests, or efectivly 48*16+48 MD5 bytes or 816 kbytes + * be 48 16k MD5 digests, or effectively 48*16+48 MD5 bytes or 816 kbytes * or about 3.5 times as much. * - eric */ |