diff options
author | afresh1 <> | 2014-04-17 19:22:31 +0000 |
---|---|---|
committer | afresh1 <> | 2014-04-17 19:22:31 +0000 |
commit | 153c46d19d82a5b1fc1fae9d017d086b0d86b929 (patch) | |
tree | 9f91bdab52311e5e9044bbc20fe7c48fe2424267 | |
parent | 2bb4d4ac7a2751306ac55c3ce2fe3af26d8ef965 (diff) | |
download | openbsd-153c46d19d82a5b1fc1fae9d017d086b0d86b929.tar.gz openbsd-153c46d19d82a5b1fc1fae9d017d086b0d86b929.tar.bz2 openbsd-153c46d19d82a5b1fc1fae9d017d086b0d86b929.zip |
Remove utils that we don't use
opensslwrap.sh and shlib_wrap.sh are used by tests that are getting replaced,
x86asm.sh is obsoleted by our Makefile machinery
ok miod
-rwxr-xr-x | src/lib/libcrypto/util/opensslwrap.sh | 26 | ||||
-rwxr-xr-x | src/lib/libcrypto/util/shlib_wrap.sh | 97 | ||||
-rw-r--r-- | src/lib/libcrypto/util/x86asm.sh | 42 | ||||
-rwxr-xr-x | src/lib/libssl/src/util/opensslwrap.sh | 26 | ||||
-rwxr-xr-x | src/lib/libssl/src/util/shlib_wrap.sh | 97 | ||||
-rw-r--r-- | src/lib/libssl/src/util/x86asm.sh | 42 |
6 files changed, 0 insertions, 330 deletions
diff --git a/src/lib/libcrypto/util/opensslwrap.sh b/src/lib/libcrypto/util/opensslwrap.sh deleted file mode 100755 index b27cbb897f..0000000000 --- a/src/lib/libcrypto/util/opensslwrap.sh +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | HERE="`echo $0 | sed -e 's|[^/]*$||'`" | ||
4 | OPENSSL="${HERE}../apps/openssl" | ||
5 | |||
6 | if [ -d "${HERE}../engines" -a "x$OPENSSL_ENGINES" = "x" ]; then | ||
7 | OPENSSL_ENGINES="${HERE}../engines"; export OPENSSL_ENGINES | ||
8 | fi | ||
9 | |||
10 | if [ -x "${OPENSSL}.exe" ]; then | ||
11 | # The original reason for this script existence is to work around | ||
12 | # certain caveats in run-time linker behaviour. On Windows platforms | ||
13 | # adjusting $PATH used to be sufficient, but with introduction of | ||
14 | # SafeDllSearchMode in XP/2003 the only way to get it right in | ||
15 | # *all* possible situations is to copy newly built .DLLs to apps/ | ||
16 | # and test/, which is now done elsewhere... The $PATH is adjusted | ||
17 | # for backward compatibility (and nostagical reasons:-). | ||
18 | if [ "$OSTYPE" != msdosdjgpp ]; then | ||
19 | PATH="${HERE}..:$PATH"; export PATH | ||
20 | fi | ||
21 | exec "${OPENSSL}.exe" "$@" | ||
22 | elif [ -x "${OPENSSL}" -a -x "${HERE}shlib_wrap.sh" ]; then | ||
23 | exec "${HERE}shlib_wrap.sh" "${OPENSSL}" "$@" | ||
24 | else | ||
25 | exec "${OPENSSL}" "$@" # hope for the best... | ||
26 | fi | ||
diff --git a/src/lib/libcrypto/util/shlib_wrap.sh b/src/lib/libcrypto/util/shlib_wrap.sh deleted file mode 100755 index 8775cb5411..0000000000 --- a/src/lib/libcrypto/util/shlib_wrap.sh +++ /dev/null | |||
@@ -1,97 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | [ $# -ne 0 ] || set -x # debug mode without arguments:-) | ||
4 | |||
5 | THERE="`echo $0 | sed -e 's|[^/]*$||' 2>/dev/null`.." | ||
6 | [ -d "${THERE}" ] || exec "$@" # should never happen... | ||
7 | |||
8 | # Alternative to this is to parse ${THERE}/Makefile... | ||
9 | LIBCRYPTOSO="${THERE}/libcrypto.so" | ||
10 | if [ -f "$LIBCRYPTOSO" ]; then | ||
11 | while [ -h "$LIBCRYPTOSO" ]; do | ||
12 | LIBCRYPTOSO="${THERE}/`ls -l "$LIBCRYPTOSO" | sed -e 's|.*\-> ||'`" | ||
13 | done | ||
14 | SOSUFFIX=`echo ${LIBCRYPTOSO} | sed -e 's|.*\.so||' 2>/dev/null` | ||
15 | LIBSSLSO="${THERE}/libssl.so${SOSUFFIX}" | ||
16 | fi | ||
17 | |||
18 | SYSNAME=`(uname -s) 2>/dev/null`; | ||
19 | case "$SYSNAME" in | ||
20 | SunOS|IRIX*) | ||
21 | # SunOS and IRIX run-time linkers evaluate alternative | ||
22 | # variables depending on target ABI... | ||
23 | rld_var=LD_LIBRARY_PATH | ||
24 | case "`(/usr/bin/file "$LIBCRYPTOSO") 2>/dev/null`" in | ||
25 | *ELF\ 64*SPARC*|*ELF\ 64*AMD64*) | ||
26 | [ -n "$LD_LIBRARY_PATH_64" ] && rld_var=LD_LIBRARY_PATH_64 | ||
27 | LD_PRELOAD_64="$LIBCRYPTOSO $LIBSSLSO"; export LD_PRELOAD_64 | ||
28 | preload_var=LD_PRELOAD_64 | ||
29 | ;; | ||
30 | # Why are newly built .so's preloaded anyway? Because run-time | ||
31 | # .so lookup path embedded into application takes precedence | ||
32 | # over LD_LIBRARY_PATH and as result application ends up linking | ||
33 | # to previously installed .so's. On IRIX instead of preloading | ||
34 | # newly built .so's we trick run-time linker to fail to find | ||
35 | # the installed .so by setting _RLD_ROOT variable. | ||
36 | *ELF\ 32*MIPS*) | ||
37 | #_RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD_LIST | ||
38 | _RLD_ROOT=/no/such/dir; export _RLD_ROOT | ||
39 | eval $rld_var=\"/usr/lib'${'$rld_var':+:$'$rld_var'}'\" | ||
40 | preload_var=_RLD_LIST | ||
41 | ;; | ||
42 | *ELF\ N32*MIPS*) | ||
43 | [ -n "$LD_LIBRARYN32_PATH" ] && rld_var=LD_LIBRARYN32_PATH | ||
44 | #_RLDN32_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLDN32_LIST | ||
45 | _RLDN32_ROOT=/no/such/dir; export _RLDN32_ROOT | ||
46 | eval $rld_var=\"/usr/lib32'${'$rld_var':+:$'$rld_var'}'\" | ||
47 | preload_var=_RLDN32_LIST | ||
48 | ;; | ||
49 | *ELF\ 64*MIPS*) | ||
50 | [ -n "$LD_LIBRARY64_PATH" ] && rld_var=LD_LIBRARY64_PATH | ||
51 | #_RLD64_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD64_LIST | ||
52 | _RLD64_ROOT=/no/such/dir; export _RLD64_ROOT | ||
53 | eval $rld_var=\"/usr/lib64'${'$rld_var':+:$'$rld_var'}'\" | ||
54 | preload_var=_RLD64_LIST | ||
55 | ;; | ||
56 | esac | ||
57 | eval $rld_var=\"${THERE}'${'$rld_var':+:$'$rld_var'}'\"; export $rld_var | ||
58 | unset rld_var | ||
59 | ;; | ||
60 | *) LD_LIBRARY_PATH="${THERE}:$LD_LIBRARY_PATH" # Linux, ELF HP-UX | ||
61 | DYLD_LIBRARY_PATH="${THERE}:$DYLD_LIBRARY_PATH" # MacOS X | ||
62 | SHLIB_PATH="${THERE}:$SHLIB_PATH" # legacy HP-UX | ||
63 | LIBPATH="${THERE}:$LIBPATH" # AIX, OS/2 | ||
64 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | ||
65 | # Even though $PATH is adjusted [for Windows sake], it doesn't | ||
66 | # necessarily does the trick. Trouble is that with introduction | ||
67 | # of SafeDllSearchMode in XP/2003 it's more appropriate to copy | ||
68 | # .DLLs in vicinity of executable, which is done elsewhere... | ||
69 | if [ "$OSTYPE" != msdosdjgpp ]; then | ||
70 | PATH="${THERE}:$PATH"; export PATH | ||
71 | fi | ||
72 | ;; | ||
73 | esac | ||
74 | |||
75 | if [ -f "$LIBCRYPTOSO" -a -z "$preload_var" ]; then | ||
76 | # Following three lines are major excuse for isolating them into | ||
77 | # this wrapper script. Original reason for setting LD_PRELOAD | ||
78 | # was to make it possible to pass 'make test' when user linked | ||
79 | # with -rpath pointing to previous version installation. Wrapping | ||
80 | # it into a script makes it possible to do so on multi-ABI | ||
81 | # platforms. | ||
82 | case "$SYSNAME" in | ||
83 | *BSD|QNX) LD_PRELOAD="$LIBCRYPTOSO:$LIBSSLSO" ;; # *BSD, QNX | ||
84 | *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX | ||
85 | esac | ||
86 | _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX | ||
87 | DYLD_INSERT_LIBRARIES="$LIBCRYPTOSO:$LIBSSLSO" # MacOS X | ||
88 | export LD_PRELOAD _RLD_LIST DYLD_INSERT_LIBRARIES | ||
89 | fi | ||
90 | |||
91 | cmd="$1${EXE_EXT}" | ||
92 | shift | ||
93 | if [ $# -eq 0 ]; then | ||
94 | exec "$cmd" # old sh, such as Tru64 4.x, fails to expand empty "$@" | ||
95 | else | ||
96 | exec "$cmd" "$@" | ||
97 | fi | ||
diff --git a/src/lib/libcrypto/util/x86asm.sh b/src/lib/libcrypto/util/x86asm.sh deleted file mode 100644 index d2090a9849..0000000000 --- a/src/lib/libcrypto/util/x86asm.sh +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | echo Generating x86 assember | ||
4 | echo Bignum | ||
5 | (cd crypto/bn/asm; perl x86.pl cpp > bn86unix.cpp) | ||
6 | (cd crypto/bn/asm; perl x86.pl win32 > bn-win32.asm) | ||
7 | |||
8 | echo DES | ||
9 | (cd crypto/des/asm; perl des-586.pl cpp > dx86unix.cpp) | ||
10 | (cd crypto/des/asm; perl des-586.pl win32 > d-win32.asm) | ||
11 | |||
12 | echo "crypt(3)" | ||
13 | (cd crypto/des/asm; perl crypt586.pl cpp > yx86unix.cpp) | ||
14 | (cd crypto/des/asm; perl crypt586.pl win32 > y-win32.asm) | ||
15 | |||
16 | echo Blowfish | ||
17 | (cd crypto/bf/asm; perl bf-586.pl cpp > bx86unix.cpp) | ||
18 | (cd crypto/bf/asm; perl bf-586.pl win32 > b-win32.asm) | ||
19 | |||
20 | echo CAST5 | ||
21 | (cd crypto/cast/asm; perl cast-586.pl cpp > cx86unix.cpp) | ||
22 | (cd crypto/cast/asm; perl cast-586.pl win32 > c-win32.asm) | ||
23 | |||
24 | echo RC4 | ||
25 | (cd crypto/rc4/asm; perl rc4-586.pl cpp > rx86unix.cpp) | ||
26 | (cd crypto/rc4/asm; perl rc4-586.pl win32 > r4-win32.asm) | ||
27 | |||
28 | echo MD5 | ||
29 | (cd crypto/md5/asm; perl md5-586.pl cpp > mx86unix.cpp) | ||
30 | (cd crypto/md5/asm; perl md5-586.pl win32 > m5-win32.asm) | ||
31 | |||
32 | echo SHA1 | ||
33 | (cd crypto/sha/asm; perl sha1-586.pl cpp > sx86unix.cpp) | ||
34 | (cd crypto/sha/asm; perl sha1-586.pl win32 > s1-win32.asm) | ||
35 | |||
36 | echo RIPEMD160 | ||
37 | (cd crypto/ripemd/asm; perl rmd-586.pl cpp > rm86unix.cpp) | ||
38 | (cd crypto/ripemd/asm; perl rmd-586.pl win32 > rm-win32.asm) | ||
39 | |||
40 | echo RC5/32 | ||
41 | (cd crypto/rc5/asm; perl rc5-586.pl cpp > r586unix.cpp) | ||
42 | (cd crypto/rc5/asm; perl rc5-586.pl win32 > r5-win32.asm) | ||
diff --git a/src/lib/libssl/src/util/opensslwrap.sh b/src/lib/libssl/src/util/opensslwrap.sh deleted file mode 100755 index b27cbb897f..0000000000 --- a/src/lib/libssl/src/util/opensslwrap.sh +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | HERE="`echo $0 | sed -e 's|[^/]*$||'`" | ||
4 | OPENSSL="${HERE}../apps/openssl" | ||
5 | |||
6 | if [ -d "${HERE}../engines" -a "x$OPENSSL_ENGINES" = "x" ]; then | ||
7 | OPENSSL_ENGINES="${HERE}../engines"; export OPENSSL_ENGINES | ||
8 | fi | ||
9 | |||
10 | if [ -x "${OPENSSL}.exe" ]; then | ||
11 | # The original reason for this script existence is to work around | ||
12 | # certain caveats in run-time linker behaviour. On Windows platforms | ||
13 | # adjusting $PATH used to be sufficient, but with introduction of | ||
14 | # SafeDllSearchMode in XP/2003 the only way to get it right in | ||
15 | # *all* possible situations is to copy newly built .DLLs to apps/ | ||
16 | # and test/, which is now done elsewhere... The $PATH is adjusted | ||
17 | # for backward compatibility (and nostagical reasons:-). | ||
18 | if [ "$OSTYPE" != msdosdjgpp ]; then | ||
19 | PATH="${HERE}..:$PATH"; export PATH | ||
20 | fi | ||
21 | exec "${OPENSSL}.exe" "$@" | ||
22 | elif [ -x "${OPENSSL}" -a -x "${HERE}shlib_wrap.sh" ]; then | ||
23 | exec "${HERE}shlib_wrap.sh" "${OPENSSL}" "$@" | ||
24 | else | ||
25 | exec "${OPENSSL}" "$@" # hope for the best... | ||
26 | fi | ||
diff --git a/src/lib/libssl/src/util/shlib_wrap.sh b/src/lib/libssl/src/util/shlib_wrap.sh deleted file mode 100755 index 8775cb5411..0000000000 --- a/src/lib/libssl/src/util/shlib_wrap.sh +++ /dev/null | |||
@@ -1,97 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | [ $# -ne 0 ] || set -x # debug mode without arguments:-) | ||
4 | |||
5 | THERE="`echo $0 | sed -e 's|[^/]*$||' 2>/dev/null`.." | ||
6 | [ -d "${THERE}" ] || exec "$@" # should never happen... | ||
7 | |||
8 | # Alternative to this is to parse ${THERE}/Makefile... | ||
9 | LIBCRYPTOSO="${THERE}/libcrypto.so" | ||
10 | if [ -f "$LIBCRYPTOSO" ]; then | ||
11 | while [ -h "$LIBCRYPTOSO" ]; do | ||
12 | LIBCRYPTOSO="${THERE}/`ls -l "$LIBCRYPTOSO" | sed -e 's|.*\-> ||'`" | ||
13 | done | ||
14 | SOSUFFIX=`echo ${LIBCRYPTOSO} | sed -e 's|.*\.so||' 2>/dev/null` | ||
15 | LIBSSLSO="${THERE}/libssl.so${SOSUFFIX}" | ||
16 | fi | ||
17 | |||
18 | SYSNAME=`(uname -s) 2>/dev/null`; | ||
19 | case "$SYSNAME" in | ||
20 | SunOS|IRIX*) | ||
21 | # SunOS and IRIX run-time linkers evaluate alternative | ||
22 | # variables depending on target ABI... | ||
23 | rld_var=LD_LIBRARY_PATH | ||
24 | case "`(/usr/bin/file "$LIBCRYPTOSO") 2>/dev/null`" in | ||
25 | *ELF\ 64*SPARC*|*ELF\ 64*AMD64*) | ||
26 | [ -n "$LD_LIBRARY_PATH_64" ] && rld_var=LD_LIBRARY_PATH_64 | ||
27 | LD_PRELOAD_64="$LIBCRYPTOSO $LIBSSLSO"; export LD_PRELOAD_64 | ||
28 | preload_var=LD_PRELOAD_64 | ||
29 | ;; | ||
30 | # Why are newly built .so's preloaded anyway? Because run-time | ||
31 | # .so lookup path embedded into application takes precedence | ||
32 | # over LD_LIBRARY_PATH and as result application ends up linking | ||
33 | # to previously installed .so's. On IRIX instead of preloading | ||
34 | # newly built .so's we trick run-time linker to fail to find | ||
35 | # the installed .so by setting _RLD_ROOT variable. | ||
36 | *ELF\ 32*MIPS*) | ||
37 | #_RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD_LIST | ||
38 | _RLD_ROOT=/no/such/dir; export _RLD_ROOT | ||
39 | eval $rld_var=\"/usr/lib'${'$rld_var':+:$'$rld_var'}'\" | ||
40 | preload_var=_RLD_LIST | ||
41 | ;; | ||
42 | *ELF\ N32*MIPS*) | ||
43 | [ -n "$LD_LIBRARYN32_PATH" ] && rld_var=LD_LIBRARYN32_PATH | ||
44 | #_RLDN32_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLDN32_LIST | ||
45 | _RLDN32_ROOT=/no/such/dir; export _RLDN32_ROOT | ||
46 | eval $rld_var=\"/usr/lib32'${'$rld_var':+:$'$rld_var'}'\" | ||
47 | preload_var=_RLDN32_LIST | ||
48 | ;; | ||
49 | *ELF\ 64*MIPS*) | ||
50 | [ -n "$LD_LIBRARY64_PATH" ] && rld_var=LD_LIBRARY64_PATH | ||
51 | #_RLD64_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD64_LIST | ||
52 | _RLD64_ROOT=/no/such/dir; export _RLD64_ROOT | ||
53 | eval $rld_var=\"/usr/lib64'${'$rld_var':+:$'$rld_var'}'\" | ||
54 | preload_var=_RLD64_LIST | ||
55 | ;; | ||
56 | esac | ||
57 | eval $rld_var=\"${THERE}'${'$rld_var':+:$'$rld_var'}'\"; export $rld_var | ||
58 | unset rld_var | ||
59 | ;; | ||
60 | *) LD_LIBRARY_PATH="${THERE}:$LD_LIBRARY_PATH" # Linux, ELF HP-UX | ||
61 | DYLD_LIBRARY_PATH="${THERE}:$DYLD_LIBRARY_PATH" # MacOS X | ||
62 | SHLIB_PATH="${THERE}:$SHLIB_PATH" # legacy HP-UX | ||
63 | LIBPATH="${THERE}:$LIBPATH" # AIX, OS/2 | ||
64 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | ||
65 | # Even though $PATH is adjusted [for Windows sake], it doesn't | ||
66 | # necessarily does the trick. Trouble is that with introduction | ||
67 | # of SafeDllSearchMode in XP/2003 it's more appropriate to copy | ||
68 | # .DLLs in vicinity of executable, which is done elsewhere... | ||
69 | if [ "$OSTYPE" != msdosdjgpp ]; then | ||
70 | PATH="${THERE}:$PATH"; export PATH | ||
71 | fi | ||
72 | ;; | ||
73 | esac | ||
74 | |||
75 | if [ -f "$LIBCRYPTOSO" -a -z "$preload_var" ]; then | ||
76 | # Following three lines are major excuse for isolating them into | ||
77 | # this wrapper script. Original reason for setting LD_PRELOAD | ||
78 | # was to make it possible to pass 'make test' when user linked | ||
79 | # with -rpath pointing to previous version installation. Wrapping | ||
80 | # it into a script makes it possible to do so on multi-ABI | ||
81 | # platforms. | ||
82 | case "$SYSNAME" in | ||
83 | *BSD|QNX) LD_PRELOAD="$LIBCRYPTOSO:$LIBSSLSO" ;; # *BSD, QNX | ||
84 | *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX | ||
85 | esac | ||
86 | _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX | ||
87 | DYLD_INSERT_LIBRARIES="$LIBCRYPTOSO:$LIBSSLSO" # MacOS X | ||
88 | export LD_PRELOAD _RLD_LIST DYLD_INSERT_LIBRARIES | ||
89 | fi | ||
90 | |||
91 | cmd="$1${EXE_EXT}" | ||
92 | shift | ||
93 | if [ $# -eq 0 ]; then | ||
94 | exec "$cmd" # old sh, such as Tru64 4.x, fails to expand empty "$@" | ||
95 | else | ||
96 | exec "$cmd" "$@" | ||
97 | fi | ||
diff --git a/src/lib/libssl/src/util/x86asm.sh b/src/lib/libssl/src/util/x86asm.sh deleted file mode 100644 index d2090a9849..0000000000 --- a/src/lib/libssl/src/util/x86asm.sh +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | echo Generating x86 assember | ||
4 | echo Bignum | ||
5 | (cd crypto/bn/asm; perl x86.pl cpp > bn86unix.cpp) | ||
6 | (cd crypto/bn/asm; perl x86.pl win32 > bn-win32.asm) | ||
7 | |||
8 | echo DES | ||
9 | (cd crypto/des/asm; perl des-586.pl cpp > dx86unix.cpp) | ||
10 | (cd crypto/des/asm; perl des-586.pl win32 > d-win32.asm) | ||
11 | |||
12 | echo "crypt(3)" | ||
13 | (cd crypto/des/asm; perl crypt586.pl cpp > yx86unix.cpp) | ||
14 | (cd crypto/des/asm; perl crypt586.pl win32 > y-win32.asm) | ||
15 | |||
16 | echo Blowfish | ||
17 | (cd crypto/bf/asm; perl bf-586.pl cpp > bx86unix.cpp) | ||
18 | (cd crypto/bf/asm; perl bf-586.pl win32 > b-win32.asm) | ||
19 | |||
20 | echo CAST5 | ||
21 | (cd crypto/cast/asm; perl cast-586.pl cpp > cx86unix.cpp) | ||
22 | (cd crypto/cast/asm; perl cast-586.pl win32 > c-win32.asm) | ||
23 | |||
24 | echo RC4 | ||
25 | (cd crypto/rc4/asm; perl rc4-586.pl cpp > rx86unix.cpp) | ||
26 | (cd crypto/rc4/asm; perl rc4-586.pl win32 > r4-win32.asm) | ||
27 | |||
28 | echo MD5 | ||
29 | (cd crypto/md5/asm; perl md5-586.pl cpp > mx86unix.cpp) | ||
30 | (cd crypto/md5/asm; perl md5-586.pl win32 > m5-win32.asm) | ||
31 | |||
32 | echo SHA1 | ||
33 | (cd crypto/sha/asm; perl sha1-586.pl cpp > sx86unix.cpp) | ||
34 | (cd crypto/sha/asm; perl sha1-586.pl win32 > s1-win32.asm) | ||
35 | |||
36 | echo RIPEMD160 | ||
37 | (cd crypto/ripemd/asm; perl rmd-586.pl cpp > rm86unix.cpp) | ||
38 | (cd crypto/ripemd/asm; perl rmd-586.pl win32 > rm-win32.asm) | ||
39 | |||
40 | echo RC5/32 | ||
41 | (cd crypto/rc5/asm; perl rc5-586.pl cpp > r586unix.cpp) | ||
42 | (cd crypto/rc5/asm; perl rc5-586.pl win32 > r5-win32.asm) | ||