Re: BN_mod_sqrt()

2004-01-09 Thread Vadim Fedukovich
On Thu, Jan 08, 2004 at 09:02:12PM -0800, [EMAIL PROTECTED] wrote: Hi, I am using crypto library to do some calculations. I need to calculate the sqare root of a 1024 bit number and round it to nearest integer. this might mean working over just integers, isnt it? The BN_mod_sqrt

Re: BN_mod_sqrt()

2004-01-09 Thread Mathias Brossard
On Fri, 2004-01-09 at 06:02, [EMAIL PROTECTED] wrote: I am using crypto library to do some calculations. I need to calculate the sqare root of a 1024 bit number and round it to nearest integer. The BN_mod_sqrt() function would only calculate the sqare root if the input BigNum passed

BN_mod_sqrt()

2004-01-08 Thread murari
Hi, I am using crypto library to do some calculations. I need to calculate the sqare root of a 1024 bit number and round it to nearest integer. The BN_mod_sqrt() function would only calculate the sqare root if the input BigNum passed to it is a perfect square. Is the any easy work around to do