Changeset 752 for trunk/server/lib/crypto/hmacmd5.c
- Timestamp:
- Nov 29, 2012, 2:06:31 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 746,748
- Property svn:mergeinfo changed
-
trunk/server/lib/crypto/hmacmd5.c
r745 r752 37 37 if (key_len > 64) 38 38 { 39 struct MD5Contexttctx;39 MD5_CTX tctx; 40 40 41 41 MD5Init(&tctx); … … 92 92 _PUBLIC_ void hmac_md5_final(uint8_t *digest, HMACMD5Context *ctx) 93 93 { 94 struct MD5Contextctx_o;94 MD5_CTX ctx_o; 95 95 96 96 MD5Final(digest, &ctx->ctx);
Note:
See TracChangeset
for help on using the changeset viewer.