1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Remove functions deprecated in 1.3

This commit is contained in:
Manuel Pégourié-Gonnard
2015-03-20 18:15:57 +00:00
parent 48d3cef31a
commit 47723147f5
9 changed files with 1 additions and 207 deletions

View File

@ -165,14 +165,6 @@ int cipher_init_ctx( cipher_context_t *ctx, const cipher_info_t *cipher_info )
return( 0 );
}
/* compatibility wrapper */
int cipher_free_ctx( cipher_context_t *ctx )
{
cipher_free( ctx );
return( 0 );
}
int cipher_setkey( cipher_context_t *ctx, const unsigned char *key,
int key_length, const operation_t operation )
{