Rename cipher_init_ctx() to cipher_setup()
diff --git a/library/pkcs12.c b/library/pkcs12.c
index e3ca995..1baa95c 100644
--- a/library/pkcs12.c
+++ b/library/pkcs12.c
@@ -195,7 +195,7 @@
 
     mbedtls_cipher_init( &cipher_ctx );
 
-    if( ( ret = mbedtls_cipher_init_ctx( &cipher_ctx, cipher_info ) ) != 0 )
+    if( ( ret = mbedtls_cipher_setup( &cipher_ctx, cipher_info ) ) != 0 )
         goto exit;
 
     if( ( ret = mbedtls_cipher_setkey( &cipher_ctx, key, 8 * keylen, (mbedtls_operation_t) mode ) ) != 0 )