22 lines
452 B
C
22 lines
452 B
C
/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
|
|
/* SPDX-License-Identifier: Unlicense */
|
|
#include "tomcrypt_private.h"
|
|
|
|
/**
|
|
Source donated by Elliptic Semiconductor Inc (www.ellipticsemi.com) to the LibTom Projects
|
|
*/
|
|
|
|
#ifdef LTC_XTS_MODE
|
|
|
|
/** Terminate XTS state
|
|
@param xts The state to terminate
|
|
*/
|
|
void xts_done(symmetric_xts *xts)
|
|
{
|
|
LTC_ARGCHKVD(xts != NULL);
|
|
ecb_done(&xts->key1);
|
|
ecb_done(&xts->key2);
|
|
}
|
|
|
|
#endif
|