X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/d3409d5ecf2492cff862616de72a580d1a8e8dc0..d34decd2b2b88240cf4ca68a2a5feb7bf36de6e7:/mp-misc.c diff --git a/mp-misc.c b/mp-misc.c index 7f5513f..840f947 100644 --- a/mp-misc.c +++ b/mp-misc.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mp-misc.c,v 1.1 1999/11/17 18:02:16 mdw Exp $ + * $Id: mp-misc.c,v 1.2 2000/06/17 11:45:09 mdw Exp $ * * Miscellaneous multiprecision support functions * @@ -30,6 +30,11 @@ /*----- Revision history --------------------------------------------------* * * $Log: mp-misc.c,v $ + * Revision 1.2 2000/06/17 11:45:09 mdw + * Major memory management overhaul. Added arena support. Use the secure + * arena for secret integers. Replace and improve the MP management macros + * (e.g., replace MP_MODIFY by MP_DEST). + * * Revision 1.1 1999/11/17 18:02:16 mdw * New multiprecision integer arithmetic suite. * @@ -39,24 +44,6 @@ #include "mp.h" -/*----- Paranoia management -----------------------------------------------*/ - -/* --- @mp_burn@ --- * - * - * Arguments: @mp *m@ = pointer to a multiprecision integer - * - * Returns: --- - * - * Use: Marks the integer as `burn-after-use'. When the integer's - * memory is deallocated, it is deleted so that traces can't - * remain in the swap file. In theory. - */ - -void mp_burn(mp *m) -{ - m->f |= MP_BURN; -} - /*----- Basic manipulation ------------------------------------------------*/ /* --- @mp_shrink@ --- *