aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/crypto.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-15 23:48:12 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-15 23:48:12 +0000
commit597c75ce7b9c35e5dd0ace49462bd02efcd2e5a1 (patch)
tree148de50e79eba09c6f90abf29b6509e0dbb264db /include/asterisk/crypto.h
parentef642e2e7834df16533a3513c7efe663e0a791c8 (diff)
Repair // comments to /* */ comments (bug #3347)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4806 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/crypto.h')
-rwxr-xr-xinclude/asterisk/crypto.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asterisk/crypto.h b/include/asterisk/crypto.h
index dff70e6b0..13bf0c373 100755
--- a/include/asterisk/crypto.h
+++ b/include/asterisk/crypto.h
@@ -26,7 +26,7 @@ extern "C" {
struct ast_key;
-//! Retrieve a key
+/*! Retrieve a key */
/*!
* \param name of the key we are retrieving
* \param int type of key (AST_KEY_PUBLIC or AST_KEY_PRIVATE)
@@ -35,14 +35,14 @@ struct ast_key;
*/
extern struct ast_key *ast_key_get(char *key, int type);
-//! Initialize keys (that is, retrieve pass codes for all private keys)
+/*! Initialize keys (that is, retrieve pass codes for all private keys) */
/*!
* \param fd a file descriptor for I/O for passwords
*
*/
extern int ast_key_init(int fd);
-//! Check the authenticity of a message signature using a given public key
+/*! Check the authenticity of a message signature using a given public key */
/*!
* \param key a public key to use to verify
* \param msg the message that has been signed
@@ -53,7 +53,7 @@ extern int ast_key_init(int fd);
*/
extern int ast_check_signature(struct ast_key *key, char *msg, char *sig);
-//! Check the authenticity of a message signature using a given public key
+/*! Check the authenticity of a message signature using a given public key */
/*!
* \param key a public key to use to verify
* \param msg the message that has been signed