1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
13 DSA implementation, free a DSA key, Tom St Denis
20 @param key The key to free from memory
22 void dsa_free(dsa_key *key)
24 LTC_ARGCHKVD(key != NULL);
25 mp_cleanup_multi(&key->y, &key->x, &key->q, &key->g, &key->p, NULL);
26 key->type = key->qord = 0;
31 /* ref: $Format:%D$ */
32 /* git commit: $Format:%H$ */
33 /* commit time: $Format:%ai$ */