From d72ea80a00d2b47421890f7202e1d8d417b8612a Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Wed, 5 Sep 2007 16:31:39 +0000 Subject: Doxygen cleanups/fixes. Closes issue #10654, patch by snuffy git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81560 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/sha1.h | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'include/asterisk/sha1.h') diff --git a/include/asterisk/sha1.h b/include/asterisk/sha1.h index fa8e2155b..ed905d04b 100644 --- a/include/asterisk/sha1.h +++ b/include/asterisk/sha1.h @@ -47,23 +47,22 @@ enum #endif #define SHA1HashSize 20 -/* - * This structure will hold context information for the SHA-1 - * hashing operation - */ +/*! + * \brief This structure will hold context information for the SHA-1 hashing operation +*/ typedef struct SHA1Context { - uint32_t Intermediate_Hash[SHA1HashSize/4]; /* Message Digest */ + uint32_t Intermediate_Hash[SHA1HashSize/4]; /*! Message Digest */ - uint32_t Length_Low; /* Message length in bits */ - uint32_t Length_High; /* Message length in bits */ + uint32_t Length_Low; /*!< Message length in bits */ + uint32_t Length_High; /*!< Message length in bits */ /* Index into message block array */ - uint32_t Message_Block_Index; /* 8 bits actually suffice */ - uint8_t Message_Block[64]; /* 512-bit message blocks */ + uint32_t Message_Block_Index; /*!< 8 bits actually suffice */ + uint8_t Message_Block[64]; /*!< 512-bit message blocks */ - int Computed; /* Is the digest computed? */ - int Corrupted; /* Is the message digest corrupted? */ + int Computed; /*!< Is the digest computed? */ + int Corrupted; /*!< Is the message digest corrupted? */ } SHA1Context; /* -- cgit v1.2.3