aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_crypto.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-05 16:31:39 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-05 16:31:39 +0000
commitaa519b18f86a36fbd119a62a72d2ee907d891c91 (patch)
treef7633ff4bac526f50ea47b6d518c8d132ac84b6e /res/res_crypto.c
parentf6763ca4b364721de15453dcc2b927d329eafdd0 (diff)
Doxygen cleanups/fixes.
Closes issue #10654, patch by snuffy git-svn-id: http://svn.digium.com/svn/asterisk/trunk@81560 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_crypto.c')
-rw-r--r--res/res_crypto.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/res/res_crypto.c b/res/res_crypto.c
index 4ad6885c5..65c5b768d 100644
--- a/res/res_crypto.c
+++ b/res/res_crypto.c
@@ -102,16 +102,6 @@ static AST_RWLIST_HEAD_STATIC(keys, ast_key);
* \param userdata
* \return length of string,-1 on failure
*/
-
-
-/*!
- * \brief setting of priv key
- * \param buf
- * \param size
- * \param rwflag
- * \param userdata
- * \return length of string,-1 on failure
-*/
static int pw_cb(char *buf, int size, int rwflag, void *userdata)
{
struct ast_key *key = (struct ast_key *)userdata;
@@ -293,10 +283,6 @@ static struct ast_key *try_load_key(char *dir, char *fname, int ifd, int ofd, in
* \brief signs outgoing message with public key
* \see ast_sign_bin
*/
-/*!
- * \brief signs outgoing message with public key
- * \see ast_sign_bin
-*/
static int __ast_sign_bin(struct ast_key *key, const char *msg, int msglen, unsigned char *dsig)
{
unsigned char digest[20];