]> git.ipfire.org Git - thirdparty/openssl.git/blame - ms/x86asm.bat
Clear BN_FLG_CONSTTIME on BN_CTX_get()
[thirdparty/openssl.git] / ms / x86asm.bat
CommitLineData
7eceffbf
DSH
1
2@echo off
3echo Generating x86 assember
4
5echo Bignum
6cd crypto\bn\asm
7perl x86.pl win32n > bn-win32.asm
8cd ..\..\..
9
10echo DES
11cd crypto\des\asm
12perl des-586.pl win32n > d-win32.asm
13cd ..\..\..
14
15echo "crypt(3)"
16
17cd crypto\des\asm
18perl crypt586.pl win32n > y-win32.asm
19cd ..\..\..
20
21echo Blowfish
22
23cd crypto\bf\asm
24perl bf-586.pl win32n > b-win32.asm
25cd ..\..\..
26
27echo CAST5
28cd crypto\cast\asm
29perl cast-586.pl win32n > c-win32.asm
30cd ..\..\..
31
32echo RC4
33cd crypto\rc4\asm
34perl rc4-586.pl win32n > r4-win32.asm
35cd ..\..\..
36
37echo MD5
38cd crypto\md5\asm
39perl md5-586.pl win32n > m5-win32.asm
40cd ..\..\..
41
42echo SHA1
43cd crypto\sha\asm
44perl sha1-586.pl win32n > s1-win32.asm
45cd ..\..\..
46
47echo RIPEMD160
48cd crypto\ripemd\asm
49perl rmd-586.pl win32n > rm-win32.asm
50cd ..\..\..
51
52echo RC5\32
53cd crypto\rc5\asm
54perl rc5-586.pl win32n > r5-win32.asm
55cd ..\..\..
56
57echo on