/**
* Create an empty RRSIG RR (i.e. without the actual signature data)
* \param[in] rrset The RRset to create the signature for
- * \param[in] current_key The key that will create the signature
+ * \param[in] key The key that will create the signature
* \return signature rr
*/
ldns_rr *
* Set the key id data. This is used if the key points to
* some externally stored key data
*
- * The data at the pointer is not copied, and must be freed
- * manually; ldns_key_deep_free() does *not* free this data
- * \param[in] k the key
- * \param[in] hmac key id data
+ * Only the pointer is set, the data there is not copied,
+ * and must be freed manually; ldns_key_deep_free() does
+ * *not* free this data
+ * \param[in] key the key
+ * \param[in] external_key key id data
*/
-void ldns_key_set_external_key(ldns_key *k, void *external_key);
+void ldns_key_set_external_key(ldns_key *key, void *external_key);
/**
* Set the key's hmac size
/**
* Returns the 'default base name' for key files;
- * IE. K<zone>+<alg>+<keytag>
+ * IE. K\<zone\>+\<alg\>+\<keytag\>
* (without the .key or .private)
* The memory for this is allocated by this function,
* and should be freed by the caller
/**
* Encode data as BubbleBabble
*
- * \param[in] a pointer to data to be encoded
- * \param[in] size the number of bytes of data
+ * \param[in] data a pointer to data to be encoded
+ * \param[in] len size the number of bytes of data
* \return a string of BubbleBabble
*/
char *ldns_bubblebabble(uint8_t *data, size_t len);