First pass clean up of bn_mont.c.
authorjsing <jsing@openbsd.org>
Sun, 19 Feb 2023 13:44:29 +0000 (13:44 +0000)
committerjsing <jsing@openbsd.org>
Sun, 19 Feb 2023 13:44:29 +0000 (13:44 +0000)
commit305d6377b7e380e3dfadea7d9bbd38e001cbef9e
treecbd77da217763cfd176478a434d2557398141000
parent48328ca3d14113fa7cbdba508221025ea7ea7d1c
First pass clean up of bn_mont.c.

Use calloc() rather than malloc() with manual initialisation of all struct
members to zero, use memset() instead of manually initialising all struct
members to zero, use consistent naming, use BN_free() instead of
BN_clear_free() (since it is the same thing).

ok tb@
lib/libcrypto/bn/bn_mont.c