Re: Stack Usage

2001-08-16 Thread Greg Stark
16412 des_read_password 16412 des_read_2passwords 8192 des_read_pw_string These three are large because of arrays that are absurdly long; 8k to read in a password! 8204 probable_prime This one can be reduced by 4k by using an array of 16-bit ints instead of 32-bit ints. 10284 BIO_vprintf

RE: Stack Usage

2001-08-16 Thread David Schwartz
16412 des_read_password 16412 des_read_2passwords 8192 des_read_pw_string These three are large because of arrays that are absurdly long; 8k to read in a password! Great. Just make sure that if you reduce them, you don't risk buffer overruns. (That is, make sure to find what it