define THIRTY_TWO_BIT instead of SIXTY_FOUR_BIT on WIN32. Since

this file is already heavily ifdef'd with WIN32, one more seemed like
the most reasonable way to handle the matter.
This commit is contained in:
David Lawrence
1999-10-08 22:01:05 +00:00
parent 25ebcfe710
commit 0e64f7883a

View File

@@ -77,8 +77,12 @@ extern "C" {
#define BN_RECURSION
#define RECP_MUL_MOD
#define MONT_MUL_MOD
#ifndef WIN32
#define SIXTY_FOUR_BIT /* BEW */
#define NO_ASM /* BEW */
#else
#define THIRTY_TWO_BIT /* DCL */
#endif
/* This next option uses the C libraries (2 word)/(1 word) function.
* If it is not defined, I use my C version (which is slower).