/* 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*/8#include "tomcrypt.h"910/**11@file dsa_free.c12DSA implementation, free a DSA key, Tom St Denis13*/1415#ifdef LTC_MDSA1617/**18Free a DSA key19@param key The key to free from memory20*/21void dsa_free(dsa_key *key)22{23LTC_ARGCHKVD(key != NULL);24mp_cleanup_multi(&key->y, &key->x, &key->q, &key->g, &key->p, NULL);25key->type = key->qord = 0;26}2728#endif293031