Browse Source

crypto: md5 hash works without hmac mode

setup mbedtls_md_context_t with hmac disabled to save some memory.
pull/2586/head
babarosaM33 4 years ago
parent
commit
3908f3ac85
1 changed files with 1 additions and 1 deletions
  1. 2
      src/crypto.c

2
src/crypto.c

@ -222,7 +222,7 @@ crypto_derive_key(const char *pass, uint8_t *key, size_t key_len)
if (pass == NULL)
return key_len;
if (mbedtls_md_setup(&c, md, 1))
if (mbedtls_md_setup(&c, md, 0))
return 0;
for (j = 0, addmd = 0; j < key_len; addmd++) {

Loading…
Cancel
Save