1*ebfedea0SLionel Sambuc#!/bin/sh 2*ebfedea0SLionel Sambuc 3*ebfedea0SLionel Sambucecho Generating x86 assember 4*ebfedea0SLionel Sambucecho Bignum 5*ebfedea0SLionel Sambuc(cd crypto/bn/asm; perl x86.pl cpp > bn86unix.cpp) 6*ebfedea0SLionel Sambuc(cd crypto/bn/asm; perl x86.pl win32 > bn-win32.asm) 7*ebfedea0SLionel Sambuc 8*ebfedea0SLionel Sambucecho DES 9*ebfedea0SLionel Sambuc(cd crypto/des/asm; perl des-586.pl cpp > dx86unix.cpp) 10*ebfedea0SLionel Sambuc(cd crypto/des/asm; perl des-586.pl win32 > d-win32.asm) 11*ebfedea0SLionel Sambuc 12*ebfedea0SLionel Sambucecho "crypt(3)" 13*ebfedea0SLionel Sambuc(cd crypto/des/asm; perl crypt586.pl cpp > yx86unix.cpp) 14*ebfedea0SLionel Sambuc(cd crypto/des/asm; perl crypt586.pl win32 > y-win32.asm) 15*ebfedea0SLionel Sambuc 16*ebfedea0SLionel Sambucecho Blowfish 17*ebfedea0SLionel Sambuc(cd crypto/bf/asm; perl bf-586.pl cpp > bx86unix.cpp) 18*ebfedea0SLionel Sambuc(cd crypto/bf/asm; perl bf-586.pl win32 > b-win32.asm) 19*ebfedea0SLionel Sambuc 20*ebfedea0SLionel Sambucecho CAST5 21*ebfedea0SLionel Sambuc(cd crypto/cast/asm; perl cast-586.pl cpp > cx86unix.cpp) 22*ebfedea0SLionel Sambuc(cd crypto/cast/asm; perl cast-586.pl win32 > c-win32.asm) 23*ebfedea0SLionel Sambuc 24*ebfedea0SLionel Sambucecho RC4 25*ebfedea0SLionel Sambuc(cd crypto/rc4/asm; perl rc4-586.pl cpp > rx86unix.cpp) 26*ebfedea0SLionel Sambuc(cd crypto/rc4/asm; perl rc4-586.pl win32 > r4-win32.asm) 27*ebfedea0SLionel Sambuc 28*ebfedea0SLionel Sambucecho MD5 29*ebfedea0SLionel Sambuc(cd crypto/md5/asm; perl md5-586.pl cpp > mx86unix.cpp) 30*ebfedea0SLionel Sambuc(cd crypto/md5/asm; perl md5-586.pl win32 > m5-win32.asm) 31*ebfedea0SLionel Sambuc 32*ebfedea0SLionel Sambucecho SHA1 33*ebfedea0SLionel Sambuc(cd crypto/sha/asm; perl sha1-586.pl cpp > sx86unix.cpp) 34*ebfedea0SLionel Sambuc(cd crypto/sha/asm; perl sha1-586.pl win32 > s1-win32.asm) 35*ebfedea0SLionel Sambuc 36*ebfedea0SLionel Sambucecho RIPEMD160 37*ebfedea0SLionel Sambuc(cd crypto/ripemd/asm; perl rmd-586.pl cpp > rm86unix.cpp) 38*ebfedea0SLionel Sambuc(cd crypto/ripemd/asm; perl rmd-586.pl win32 > rm-win32.asm) 39*ebfedea0SLionel Sambuc 40*ebfedea0SLionel Sambucecho RC5/32 41*ebfedea0SLionel Sambuc(cd crypto/rc5/asm; perl rc5-586.pl cpp > r586unix.cpp) 42*ebfedea0SLionel Sambuc(cd crypto/rc5/asm; perl rc5-586.pl win32 > r5-win32.asm) 43