diff options
author | 2003-11-18 12:39:05 +0000 | |
---|---|---|
committer | 2003-11-18 12:39:05 +0000 | |
commit | e280eb565d60f596dcccee6bf150f7eca4c0b64e (patch) | |
tree | 1ba38db9b7f1efe80d64024f3975753b4d2fc419 /lib/libcrypto/bn | |
parent | unbreak fake authloop for non-existent users (my screwup). Spotted and (diff) | |
download | wireguard-openbsd-e280eb565d60f596dcccee6bf150f7eca4c0b64e.tar.xz wireguard-openbsd-e280eb565d60f596dcccee6bf150f7eca4c0b64e.zip |
use bn_asm_vax.S (from netbsd); test + ok by miod
use asm code for i386, except for the CBC code, because
it is not clean PIC code.
add <machime/asm.h> support to x86unix.pl
tested by: nick (on 30386), henning, djm, tedu, jmc and more;
no shlib minor crank necessary, only internal symbols changed.
Diffstat (limited to 'lib/libcrypto/bn')
-rw-r--r-- | lib/libcrypto/bn/asm/bn-586.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/bn/asm/bn-586.pl b/lib/libcrypto/bn/asm/bn-586.pl index 33f61259201..9a78f63be13 100644 --- a/lib/libcrypto/bn/asm/bn-586.pl +++ b/lib/libcrypto/bn/asm/bn-586.pl @@ -11,7 +11,7 @@ require "x86asm.pl"; &bn_div_words("bn_div_words"); &bn_add_words("bn_add_words"); &bn_sub_words("bn_sub_words"); -&bn_sub_part_words("bn_sub_part_words"); +&bn_sub_part_words("bn_sub_part_words") unless $main'openbsd; &asm_finish(); |