summaryrefslogtreecommitdiff
path: root/extmod/moduhashlib.c
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2021-07-12 16:34:27 +1000
committerDamien George <damien@micropython.org>2021-07-12 16:37:07 +1000
commit94dfaff18bd1941c773f89359e40db5b555cd3ef (patch)
tree97f77a140a86a50d5dcc2341a3beb35499a5e082 /extmod/moduhashlib.c
parent966e8bf934273056af3162887fe1df014601a66d (diff)
extmod: Update for move of crypto-algorithms, re1.5, uzlib to lib.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'extmod/moduhashlib.c')
-rw-r--r--extmod/moduhashlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extmod/moduhashlib.c b/extmod/moduhashlib.c
index b170de9e5..e97e8cb75 100644
--- a/extmod/moduhashlib.c
+++ b/extmod/moduhashlib.c
@@ -40,7 +40,7 @@
#if MICROPY_SSL_MBEDTLS
#include "mbedtls/sha256.h"
#else
-#include "crypto-algorithms/sha256.h"
+#include "lib/crypto-algorithms/sha256.h"
#endif
#endif
@@ -115,7 +115,7 @@ STATIC mp_obj_t uhashlib_sha256_digest(mp_obj_t self_in) {
#else
-#include "crypto-algorithms/sha256.c"
+#include "lib/crypto-algorithms/sha256.c"
STATIC mp_obj_t uhashlib_sha256_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
mp_arg_check_num(n_args, n_kw, 0, 1, false);