25 lines
450 B
C
25 lines
450 B
C
/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
|
|
/* SPDX-License-Identifier: Unlicense */
|
|
#include "tomcrypt_private.h"
|
|
|
|
/**
|
|
@file lrw_done.c
|
|
LRW_MODE implementation, Free resources, Tom St Denis
|
|
*/
|
|
|
|
#ifdef LTC_LRW_MODE
|
|
|
|
/**
|
|
Terminate a LRW state
|
|
@param lrw The state to terminate
|
|
@return CRYPT_OK if successful
|
|
*/
|
|
int lrw_done(symmetric_LRW *lrw)
|
|
{
|
|
LTC_ARGCHK(lrw != NULL);
|
|
|
|
return ecb_done(&lrw->ecb);
|
|
}
|
|
|
|
#endif
|