Andy Polyakov 894c04aa05 PowerPC assembly pack: add POWER8 support. il y a 8 ans
..
x86 dfeab0689f Import of old SSLeay release: SSLeay 0.9.1b (unreleased) il y a 25 ans
.cvsignore 4bb61becbb Add emacs cache files to .cvsignore. il y a 19 ans
README 09f4bd2a39 Very few in the "README" is up-to-date il y a 23 ans
alpha-mont.pl 20735f4c81 alphacpuid.pl: fix alignment bug. il y a 13 ans
armv4-gf2m.pl 874faf2ffb Adapt ARM assembly pack for iOS. il y a 9 ans
armv4-mont.pl 874faf2ffb Adapt ARM assembly pack for iOS. il y a 9 ans
bn-586.pl 4d1f3f7a6c Update perl asm scripts include paths for perlasm. il y a 16 ans
bn-c64xplus.asm c616200172 Add support for Windows CE and C64+ to FIPS module. il y a 11 ans
c64xplus-gf2m.pl c616200172 Add support for Windows CE and C64+ to FIPS module. il y a 11 ans
co-586.pl 4d1f3f7a6c Update perl asm scripts include paths for perlasm. il y a 16 ans
ia64-mont.pl 56c5f703c1 IA-64 assembler pack: fix typos and make it work on HP-UX. il y a 13 ans
ia64.S 7cfe2a5e65 Fix Intel assembler warnings. il y a 19 ans
mips-mont.pl d466588788 MIPS assembler pack: enable it in Configure, add SHA2 module, fix make rules, il y a 13 ans
mips.pl 44cb365eaf bn/asm/mips.pl: fix typos [from HEAD], original by Andy il y a 12 ans
modexp512-x86_64.pl 6c01cbb6a0 modexp512-x86_64.pl: make it work with ml64. il y a 13 ans
pa-risc2.s 04945fda66 pa-risc2.s was not PIC, see RT#426. I strip call to fprintf as it's il y a 21 ans
pa-risc2W.s 6df3553255 A compiler warning removed. Thanks to the folks at HP! il y a 24 ans
parisc-mont.pl 964ed94649 parisc-mont.pl: PA-RISC 2.0 code path optimization based on intruction- il y a 14 ans
ppc-mont.pl 894c04aa05 PowerPC assembly pack: add POWER8 support. il y a 8 ans
ppc.pl 894c04aa05 PowerPC assembly pack: add POWER8 support. il y a 8 ans
ppc64-mont.pl 894c04aa05 PowerPC assembly pack: add POWER8 support. il y a 8 ans
s390x-gf2m.pl 02a73e2bed s390x-gf2m.pl: commentary update (final performance numbers turned to be il y a 13 ans
s390x-mont.pl 0ab8fd58e1 s390x assembler pack: tune-up and support for new z196 hardware. il y a 13 ans
s390x.S dd128715a2 s390x.S: fix typo in bn_mul_words. il y a 13 ans
sparcv8.S fccbb9b34f - performance retunes, v8plus bn_*_comba routines are reimplemented; il y a 25 ans
sparcv8plus.S ae8b47f07f SPARC assembler pack: fix FIPS linking errors. il y a 13 ans
sparcv9-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which il y a 17 ans
sparcv9a-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which il y a 17 ans
via-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which il y a 17 ans
vms.mar e9883d285d Finally, a bn_div_words() in VAX assembler that goes through all tests. il y a 21 ans
x86-gf2m.pl 2b9a8ca15b x86gas.pl: add palignr and move pclmulqdq. il y a 13 ans
x86-mont.pl 673c55a2fe Latest bn_mont.c modification broke ECDSA test. I've got math wrong, which il y a 17 ans
x86.pl 65b8ca07a5 Tidy up asm stuff. il y a 25 ans
x86_64-gcc.c 949c6f8ccf Stop warnings. il y a 13 ans
x86_64-gf2m.pl 96abea332c x86_64-gf2m.pl: add Win64 SEH. il y a 13 ans
x86_64-mont.pl 3f66f2040a x86_64-mont.pl: minor optimization. il y a 12 ans
x86_64-mont5.pl 8329e2e776 bn_exp.c: further optimizations using more ideas from il y a 12 ans

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).