summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-06-06 20:18:20 +0000
committerderaadt <deraadt@openbsd.org>2014-06-06 20:18:20 +0000
commitc34dff35f77e0533520765c5b86bda16b84db35b (patch)
tree8e5d9284cc1d9a2b796e686323430ea3745af565
parentUpdate description of optional argument "datalen" to reality. (diff)
downloadwireguard-openbsd-c34dff35f77e0533520765c5b86bda16b84db35b.tar.xz
wireguard-openbsd-c34dff35f77e0533520765c5b86bda16b84db35b.zip
s/assember/assembler/ before someone gets offended. At the last
hackathon, just saying 'ass ember' was enough to start giggles. Unfortunately far more offensive stuff remains in here...
-rw-r--r--lib/libcrypto/bn/asm/README12
-rw-r--r--lib/libcrypto/bn/asm/x86/add.pl2
-rw-r--r--lib/libcrypto/bn/asm/x86/comba.pl2
-rw-r--r--lib/libcrypto/bn/asm/x86/div.pl2
-rw-r--r--lib/libcrypto/bn/asm/x86/mul.pl2
-rw-r--r--lib/libcrypto/bn/asm/x86/mul_add.pl2
-rw-r--r--lib/libcrypto/bn/asm/x86/sqr.pl2
-rw-r--r--lib/libcrypto/bn/asm/x86/sub.pl2
-rw-r--r--lib/libcrypto/perlasm/readme2
-rw-r--r--lib/libcrypto/ripemd/README2
-rw-r--r--lib/libssl/src/CHANGES.SSLeay8
-rw-r--r--lib/libssl/src/crypto/bn/asm/README12
-rw-r--r--lib/libssl/src/crypto/bn/asm/x86/add.pl2
-rw-r--r--lib/libssl/src/crypto/bn/asm/x86/comba.pl2
-rw-r--r--lib/libssl/src/crypto/bn/asm/x86/div.pl2
-rw-r--r--lib/libssl/src/crypto/bn/asm/x86/mul.pl2
-rw-r--r--lib/libssl/src/crypto/bn/asm/x86/mul_add.pl2
-rw-r--r--lib/libssl/src/crypto/bn/asm/x86/sqr.pl2
-rw-r--r--lib/libssl/src/crypto/bn/asm/x86/sub.pl2
-rw-r--r--lib/libssl/src/crypto/perlasm/readme2
-rw-r--r--lib/libssl/src/crypto/ripemd/README2
21 files changed, 34 insertions, 34 deletions
diff --git a/lib/libcrypto/bn/asm/README b/lib/libcrypto/bn/asm/README
index b0f3a68a06a..323d1a06b92 100644
--- a/lib/libcrypto/bn/asm/README
+++ b/lib/libcrypto/bn/asm/README
@@ -1,23 +1,23 @@
<OBSOLETE>
-All assember in this directory are just version of the file
+All assembler in this directory are just version of the file
crypto/bn/bn_asm.c.
-Quite a few of these files are just the assember output from gcc since on
+Quite a few of these files are just the assembler output from gcc since on
quite a few machines they are 2 times faster than the system compiler.
-For the x86, I have hand written assember because of the bad job all
+For the x86, I have hand written assembler because of the bad job all
compilers seem to do on it. This normally gives a 2 time speed up in the RSA
routines.
-For the DEC alpha, I also hand wrote the assember (except the division which
+For the DEC alpha, I also hand wrote the assembler (except the division which
is just the output from the C compiler pasted on the end of the file).
On the 2 alpha C compilers I had access to, it was not possible to do
64b x 64b -> 128b calculations (both long and the long long data types
-were 64 bits). So the hand assember gives access to the 128 bit result and
+were 64 bits). So the hand assembler gives access to the 128 bit result and
a 2 times speedup :-).
-There are 3 versions of assember for the HP PA-RISC.
+There are 3 versions of assembler for the HP PA-RISC.
pa-risc.s is the origional one which works fine and generated using gcc :-)
diff --git a/lib/libcrypto/bn/asm/x86/add.pl b/lib/libcrypto/bn/asm/x86/add.pl
index 0b5cf583e37..3bb00809220 100644
--- a/lib/libcrypto/bn/asm/x86/add.pl
+++ b/lib/libcrypto/bn/asm/x86/add.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_add_words
{
diff --git a/lib/libcrypto/bn/asm/x86/comba.pl b/lib/libcrypto/bn/asm/x86/comba.pl
index 22912536293..dc4ec97ff57 100644
--- a/lib/libcrypto/bn/asm/x86/comba.pl
+++ b/lib/libcrypto/bn/asm/x86/comba.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub mul_add_c
{
diff --git a/lib/libcrypto/bn/asm/x86/div.pl b/lib/libcrypto/bn/asm/x86/div.pl
index 0e90152caa9..e771eda82fd 100644
--- a/lib/libcrypto/bn/asm/x86/div.pl
+++ b/lib/libcrypto/bn/asm/x86/div.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_div_words
{
diff --git a/lib/libcrypto/bn/asm/x86/mul.pl b/lib/libcrypto/bn/asm/x86/mul.pl
index 674cb9b0551..92b5542dacb 100644
--- a/lib/libcrypto/bn/asm/x86/mul.pl
+++ b/lib/libcrypto/bn/asm/x86/mul.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_mul_words
{
diff --git a/lib/libcrypto/bn/asm/x86/mul_add.pl b/lib/libcrypto/bn/asm/x86/mul_add.pl
index 61830d3a906..9803dbdad07 100644
--- a/lib/libcrypto/bn/asm/x86/mul_add.pl
+++ b/lib/libcrypto/bn/asm/x86/mul_add.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_mul_add_words
{
diff --git a/lib/libcrypto/bn/asm/x86/sqr.pl b/lib/libcrypto/bn/asm/x86/sqr.pl
index 1f90993cf68..6cf75a76e25 100644
--- a/lib/libcrypto/bn/asm/x86/sqr.pl
+++ b/lib/libcrypto/bn/asm/x86/sqr.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_sqr_words
{
diff --git a/lib/libcrypto/bn/asm/x86/sub.pl b/lib/libcrypto/bn/asm/x86/sub.pl
index 837b0e1b078..0c5364cce5b 100644
--- a/lib/libcrypto/bn/asm/x86/sub.pl
+++ b/lib/libcrypto/bn/asm/x86/sub.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_sub_words
{
diff --git a/lib/libcrypto/perlasm/readme b/lib/libcrypto/perlasm/readme
index f02bbee75a1..57d61fda1ee 100644
--- a/lib/libcrypto/perlasm/readme
+++ b/lib/libcrypto/perlasm/readme
@@ -7,7 +7,7 @@ and then include it.
push(@INC,"perlasm","../../perlasm");
require "x86asm.pl";
-The first thing we do is setup the file and type of assember
+The first thing we do is setup the file and type of assembler
&asm_init($ARGV[0],$0);
diff --git a/lib/libcrypto/ripemd/README b/lib/libcrypto/ripemd/README
index f1ffc8b1340..5e18d458664 100644
--- a/lib/libcrypto/ripemd/README
+++ b/lib/libcrypto/ripemd/README
@@ -1,7 +1,7 @@
RIPEMD-160
http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html
-This is my implementation of RIPEMD-160. The pentium assember is a little
+This is my implementation of RIPEMD-160. The pentium assembler is a little
off the pace since I only get 1050 cycles, while the best is 1013.
I have a few ideas for how to get another 20 or so cycles, but at
this point I will not bother right now. I believe the trick will be
diff --git a/lib/libssl/src/CHANGES.SSLeay b/lib/libssl/src/CHANGES.SSLeay
index ca5cd729767..b80b40e0cfe 100644
--- a/lib/libssl/src/CHANGES.SSLeay
+++ b/lib/libssl/src/CHANGES.SSLeay
@@ -64,14 +64,14 @@ eric (about to go bushwalking for the 4 day easter break :-)
the automactic naming out output files was being stuffed up.
29-Oct-97
- - The Cast5 cipher has been added. MD5 and SHA-1 are now in assember
+ - The Cast5 cipher has been added. MD5 and SHA-1 are now in assembler
for x86.
21-Oct-97
- Fixed a bug in the BIO_gethostbyname() cache.
15-Oct-97
- - cbc mode for blowfish/des/3des is now in assember. Blowfish asm
+ - cbc mode for blowfish/des/3des is now in assembler. Blowfish asm
has also been improved. At this point in time, on the pentium,
md5 is %80 faster, the unoptimesed sha-1 is %79 faster,
des-cbc is %28 faster, des-ede3-cbc is %9 faster and blowfish-cbc
@@ -502,7 +502,7 @@ SSLeay 0.6.6 13-Jan-1997
The main additions are
-- assember for x86 DES improvments.
+- assembler for x86 DES improvments.
From 191,000 per second on a pentium 100, I now get 281,000. The inner
loop and the IP/FP modifications are from
Svend Olaf Mikkelsen <svolaf@inet.uni-c.dk>. Many thanks for his
@@ -530,7 +530,7 @@ for the last few months and so this is mostly bug fixes and improvments.
The main additions are
-- assember for x86 DES. For all those gcc based systems, this is a big
+- assembler for x86 DES. For all those gcc based systems, this is a big
improvement. From 117,000 DES operation a second on a pentium 100,
I now get 191,000. I have also reworked the C version so it
now gives 148,000 DESs per second.
diff --git a/lib/libssl/src/crypto/bn/asm/README b/lib/libssl/src/crypto/bn/asm/README
index b0f3a68a06a..323d1a06b92 100644
--- a/lib/libssl/src/crypto/bn/asm/README
+++ b/lib/libssl/src/crypto/bn/asm/README
@@ -1,23 +1,23 @@
<OBSOLETE>
-All assember in this directory are just version of the file
+All assembler in this directory are just version of the file
crypto/bn/bn_asm.c.
-Quite a few of these files are just the assember output from gcc since on
+Quite a few of these files are just the assembler output from gcc since on
quite a few machines they are 2 times faster than the system compiler.
-For the x86, I have hand written assember because of the bad job all
+For the x86, I have hand written assembler because of the bad job all
compilers seem to do on it. This normally gives a 2 time speed up in the RSA
routines.
-For the DEC alpha, I also hand wrote the assember (except the division which
+For the DEC alpha, I also hand wrote the assembler (except the division which
is just the output from the C compiler pasted on the end of the file).
On the 2 alpha C compilers I had access to, it was not possible to do
64b x 64b -> 128b calculations (both long and the long long data types
-were 64 bits). So the hand assember gives access to the 128 bit result and
+were 64 bits). So the hand assembler gives access to the 128 bit result and
a 2 times speedup :-).
-There are 3 versions of assember for the HP PA-RISC.
+There are 3 versions of assembler for the HP PA-RISC.
pa-risc.s is the origional one which works fine and generated using gcc :-)
diff --git a/lib/libssl/src/crypto/bn/asm/x86/add.pl b/lib/libssl/src/crypto/bn/asm/x86/add.pl
index 0b5cf583e37..3bb00809220 100644
--- a/lib/libssl/src/crypto/bn/asm/x86/add.pl
+++ b/lib/libssl/src/crypto/bn/asm/x86/add.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_add_words
{
diff --git a/lib/libssl/src/crypto/bn/asm/x86/comba.pl b/lib/libssl/src/crypto/bn/asm/x86/comba.pl
index 22912536293..dc4ec97ff57 100644
--- a/lib/libssl/src/crypto/bn/asm/x86/comba.pl
+++ b/lib/libssl/src/crypto/bn/asm/x86/comba.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub mul_add_c
{
diff --git a/lib/libssl/src/crypto/bn/asm/x86/div.pl b/lib/libssl/src/crypto/bn/asm/x86/div.pl
index 0e90152caa9..e771eda82fd 100644
--- a/lib/libssl/src/crypto/bn/asm/x86/div.pl
+++ b/lib/libssl/src/crypto/bn/asm/x86/div.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_div_words
{
diff --git a/lib/libssl/src/crypto/bn/asm/x86/mul.pl b/lib/libssl/src/crypto/bn/asm/x86/mul.pl
index 674cb9b0551..92b5542dacb 100644
--- a/lib/libssl/src/crypto/bn/asm/x86/mul.pl
+++ b/lib/libssl/src/crypto/bn/asm/x86/mul.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_mul_words
{
diff --git a/lib/libssl/src/crypto/bn/asm/x86/mul_add.pl b/lib/libssl/src/crypto/bn/asm/x86/mul_add.pl
index 61830d3a906..9803dbdad07 100644
--- a/lib/libssl/src/crypto/bn/asm/x86/mul_add.pl
+++ b/lib/libssl/src/crypto/bn/asm/x86/mul_add.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_mul_add_words
{
diff --git a/lib/libssl/src/crypto/bn/asm/x86/sqr.pl b/lib/libssl/src/crypto/bn/asm/x86/sqr.pl
index 1f90993cf68..6cf75a76e25 100644
--- a/lib/libssl/src/crypto/bn/asm/x86/sqr.pl
+++ b/lib/libssl/src/crypto/bn/asm/x86/sqr.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_sqr_words
{
diff --git a/lib/libssl/src/crypto/bn/asm/x86/sub.pl b/lib/libssl/src/crypto/bn/asm/x86/sub.pl
index 837b0e1b078..0c5364cce5b 100644
--- a/lib/libssl/src/crypto/bn/asm/x86/sub.pl
+++ b/lib/libssl/src/crypto/bn/asm/x86/sub.pl
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# x86 assember
+# x86 assembler
sub bn_sub_words
{
diff --git a/lib/libssl/src/crypto/perlasm/readme b/lib/libssl/src/crypto/perlasm/readme
index f02bbee75a1..57d61fda1ee 100644
--- a/lib/libssl/src/crypto/perlasm/readme
+++ b/lib/libssl/src/crypto/perlasm/readme
@@ -7,7 +7,7 @@ and then include it.
push(@INC,"perlasm","../../perlasm");
require "x86asm.pl";
-The first thing we do is setup the file and type of assember
+The first thing we do is setup the file and type of assembler
&asm_init($ARGV[0],$0);
diff --git a/lib/libssl/src/crypto/ripemd/README b/lib/libssl/src/crypto/ripemd/README
index f1ffc8b1340..5e18d458664 100644
--- a/lib/libssl/src/crypto/ripemd/README
+++ b/lib/libssl/src/crypto/ripemd/README
@@ -1,7 +1,7 @@
RIPEMD-160
http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html
-This is my implementation of RIPEMD-160. The pentium assember is a little
+This is my implementation of RIPEMD-160. The pentium assembler is a little
off the pace since I only get 1050 cycles, while the best is 1013.
I have a few ideas for how to get another 20 or so cycles, but at
this point I will not bother right now. I believe the trick will be