This is a discussion on [openssl.org #1395] openssl-0.9.7k on HP-UX: BN_bn2dec failure - Openssl ; [guest - Sat Sep 30 01:38:47 2006]: > /* these gyrations attempt to test an particular corner case w/o */ > /* breaking every other architecture */ > for ( bnlong=1; bnlong bnlong+=bnlong) { This for loop works better on ...
[guest - Sat Sep 30 01:38:47 2006]:
> /* these gyrations attempt to test an particular corner case
w/o */
> /* breaking every other architecture */
> for ( bnlong=1; bnlong <= 10000000000000000000ULL;
bnlong+=bnlong) {
This for loop works better on other architectures if:
> for ( bnlong=1; bnlong <= BN_DEC_CONV; bnlong+=bnlong) {
my apologies for the oversight.
__________________________________________________ ____________________
OpenSSL Project http://www.openssl.org
Development Mailing List openssl-dev@openssl.org
Automated List Manager majordomo@openssl.org