commit | 8379a82a76ebb10e030bb66b641572e94c6ef90f | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Mar 24 16:48:22 2015 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Mar 25 21:37:15 2015 +0100 |
tree | 91a6c7d192b046537e09e47fcc2d83e579746599 | |
parent | 40fc4155d341df42dfed760cadb7a4041f90fe9a [diff] [blame] |
Implement hmac in the MD layer
diff --git a/include/mbedtls/md_wrap.h b/include/mbedtls/md_wrap.h index 6fe377e..e0c6354 100644 --- a/include/mbedtls/md_wrap.h +++ b/include/mbedtls/md_wrap.h
@@ -54,6 +54,9 @@ /** Output length of the digest function */ int size; + /** Block length of the digest function */ + int block_size; + /** Digest initialisation function */ void (*starts_func)( void *ctx );