Changeset 746 for vendor/current/lib/crypto/hmacmd5.c
- Timestamp:
- Nov 27, 2012, 4:56:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/lib/crypto/hmacmd5.c
r740 r746 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.