Fix CMAC interface for doxygen

Parameters didn't match the function definition.
diff --git a/include/mbedtls/cmac.h b/include/mbedtls/cmac.h
index 6d531dd..71f7ab4 100644
--- a/include/mbedtls/cmac.h
+++ b/include/mbedtls/cmac.h
@@ -69,7 +69,7 @@
  * \return              0 if successful, or a cipher specific error code
  */
 int mbedtls_cipher_cmac_starts( mbedtls_cipher_context_t *ctx,
-                                const unsigned char *key, size_t keylen );
+                                const unsigned char *key, size_t keybits );
 
 /**
  * \brief               Generic CMAC process buffer.