/* LibTomCrypt, modular cryptographic library -- Tom St Denis1*2* LibTomCrypt is a library that provides various cryptographic3* algorithms in a highly modular and flexible manner.4*5* The library is free for all purposes without any express6* guarantee it works.7*/89/* Implements ECC over Z/pZ for curve y^2 = x^3 - 3x + b10*11* All curves taken from NIST recommendation paper of July 199912* Available at http://csrc.nist.gov/cryptval/dss.htm13*/14#include "tomcrypt.h"1516/**17@file ecc_free.c18ECC Crypto, Tom St Denis19*/2021#ifdef LTC_MECC2223/**24Free an ECC key from memory25@param key The key you wish to free26*/27void ecc_free(ecc_key *key)28{29LTC_ARGCHKVD(key != NULL);30mp_clear_multi(key->pubkey.x, key->pubkey.y, key->pubkey.z, key->k, NULL);31}3233#endif343536