/**
* @defgroup Key-Derivation Advanced API for the key derivation.
*
- * TODO: rethink separate group.
* TODO: extended description and examples.
*
* @{
* @param[in] password User password as a NULL-terminated string.
* @param[in] salt Salt, should be non-zero.
* @param[in] salt_len Length of the salt.
- * @param[in] iter Number of iterations. (TODO: add enum to proposed number of iterations, pick sane defaults).
- * @param[in] algo Digest algorithm that should be used in key generation. (TODO: sane defaults).
+ * @param[in] iter Number of iterations.
+ * @param[in] algo Digest algorithm that should be used in key generation.
* @param[in] key_bits Length of a key (in bits) to be generated.
* @param[out] key Newly generated key (must be freed with yaca_key_free()).
*