README revision 109998
10SN/A<OBSOLETE>
2477SN/A
30SN/AAll assember in this directory are just version of the file
40SN/Acrypto/bn/bn_asm.c.
50SN/A
60SN/AQuite a few of these files are just the assember output from gcc since on 
7157SN/Aquite a few machines they are 2 times faster than the system compiler.
80SN/A
9157SN/AFor the x86, I have hand written assember because of the bad job all
100SN/Acompilers seem to do on it.  This normally gives a 2 time speed up in the RSA
110SN/Aroutines.
120SN/A
130SN/AFor the DEC alpha, I also hand wrote the assember (except the division which
140SN/Ais just the output from the C compiler pasted on the end of the file).
150SN/AOn the 2 alpha C compilers I had access to, it was not possible to do
160SN/A64b x 64b -> 128b calculations (both long and the long long data types
170SN/Awere 64 bits).  So the hand assember gives access to the 128 bit result and
180SN/Aa 2 times speedup :-).
190SN/A
200SN/AThere are 3 versions of assember for the HP PA-RISC.
21157SN/A
22157SN/Apa-risc.s is the origional one which works fine and generated using gcc :-)
23157SN/A
240SN/Apa-risc2W.s and pa-risc2.s are 64 and 32-bit PA-RISC 2.0 implementations
250SN/Aby Chris Ruemmler from HP (with some help from the HP C compiler).
260SN/A
270SN/A</OBSOLETE>
280SN/A