Added deallocator function for PKCS7 initializer data.

This commit is contained in:
John Safranek
2014-01-20 10:51:26 -08:00
parent c4eb5642b1
commit 28f3a2dc21
3 changed files with 15 additions and 0 deletions
+7
View File
@@ -177,6 +177,13 @@ int PKCS7_InitWithCert(PKCS7* pkcs7, byte* cert, word32 certSz)
}
/* releases any memory allocated by a PKCS7 initializer */
void PKCS7_Free(PKCS7* pkcs7)
{
(void)pkcs7;
}
/* build PKCS#7 data content type */
int PKCS7_EncodeData(PKCS7* pkcs7, byte* output, word32 outputSz)
{