Andy Polyakov 6c01cbb6a0 modexp512-x86_64.pl: make it work with ml64. há 13 anos atrás
..
x86 dfeab0689f Import of old SSLeay release: SSLeay 0.9.1b (unreleased) há 26 anos atrás
.cvsignore 4bb61becbb Add emacs cache files to .cvsignore. há 19 anos atrás
README 09f4bd2a39 Very few in the "README" is up-to-date há 24 anos atrás
alpha-mont.pl 20735f4c81 alphacpuid.pl: fix alignment bug. há 13 anos atrás
armv4-gf2m.pl 87873f4328 ARM assembler pack: add platform run-time detection. há 13 anos atrás
armv4-mont.pl 10bd69bf4f armv4-mont.pl: profiler-assisted optimization gives 8%-14% improvement há 13 anos atrás
bn-586.pl 4d1f3f7a6c Update perl asm scripts include paths for perlasm. há 17 anos atrás
co-586.pl 4d1f3f7a6c Update perl asm scripts include paths for perlasm. há 17 anos atrás
ia64-mont.pl 56c5f703c1 IA-64 assembler pack: fix typos and make it work on HP-UX. há 13 anos atrás
ia64.S 7cfe2a5e65 Fix Intel assembler warnings. há 19 anos atrás
mips-mont.pl d466588788 MIPS assembler pack: enable it in Configure, add SHA2 module, fix make rules, há 14 anos atrás
mips.pl d466588788 MIPS assembler pack: enable it in Configure, add SHA2 module, fix make rules, há 14 anos atrás
mips3-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which há 17 anos atrás
mips3.s 19a6e8b32c This fixes "Spurious test failures on IRIX?" reported in April. Apparently há 23 anos atrás
modexp512-x86_64.pl 6c01cbb6a0 modexp512-x86_64.pl: make it work with ml64. há 13 anos atrás
pa-risc2.s 04945fda66 pa-risc2.s was not PIC, see RT#426. I strip call to fprintf as it's há 22 anos atrás
pa-risc2W.s 6df3553255 A compiler warning removed. Thanks to the folks at HP! há 24 anos atrás
parisc-mont.pl 964ed94649 parisc-mont.pl: PA-RISC 2.0 code path optimization based on intruction- há 15 anos atrás
ppc-mont.pl 6715034002 PPC assembler pack: adhere closer to ABI specs, add PowerOpen traceback data. há 13 anos atrás
ppc.pl 6715034002 PPC assembler pack: adhere closer to ABI specs, add PowerOpen traceback data. há 13 anos atrás
ppc64-mont.pl 6715034002 PPC assembler pack: adhere closer to ABI specs, add PowerOpen traceback data. há 13 anos atrás
s390x-gf2m.pl 02a73e2bed s390x-gf2m.pl: commentary update (final performance numbers turned to be há 13 anos atrás
s390x-mont.pl 0ab8fd58e1 s390x assembler pack: tune-up and support for new z196 hardware. há 13 anos atrás
s390x.S dd128715a2 s390x.S: fix typo in bn_mul_words. há 14 anos atrás
sparcv8.S fccbb9b34f - performance retunes, v8plus bn_*_comba routines are reimplemented; há 25 anos atrás
sparcv8plus.S ae8b47f07f SPARC assembler pack: fix FIPS linking errors. há 13 anos atrás
sparcv9-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which há 17 anos atrás
sparcv9a-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which há 17 anos atrás
via-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which há 17 anos atrás
vms.mar e9883d285d Finally, a bn_div_words() in VAX assembler that goes through all tests. há 22 anos atrás
x86-gf2m.pl 2b9a8ca15b x86gas.pl: add palignr and move pclmulqdq. há 13 anos atrás
x86-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which há 17 anos atrás
x86.pl 65b8ca07a5 Tidy up asm stuff. há 26 anos atrás
x86_64-gcc.c 949c6f8ccf Stop warnings. há 13 anos atrás
x86_64-gf2m.pl 96abea332c x86_64-gf2m.pl: add Win64 SEH. há 13 anos atrás
x86_64-mont.pl 361512da0d This commit completes recent modular exponentiation optimizations on há 13 anos atrás
x86_64-mont5.pl e7d1363d12 x86_64-mont5.pl: add missing Win64 support. há 13 anos atrás

README



All assember 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 machines they are 2 times faster than the system compiler.

For the x86, I have hand written assember 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
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
a 2 times speedup :-).

There are 3 versions of assember for the HP PA-RISC.

pa-risc.s is the origional one which works fine and generated using gcc :-)

pa-risc2W.s and pa-risc2.s are 64 and 32-bit PA-RISC 2.0 implementations
by Chris Ruemmler from HP (with some help from the HP C compiler).