Skip to content
Snippets Groups Projects
Commit 05792d69 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

md5: use axTLS's own MD5 functions when available

parent 2a15e594
No related branches found
No related tags found
No related merge requests found
......@@ -157,6 +157,9 @@ static void MD5_Final(unsigned char digest[16], MD5_CTX *ctx)
CryptReleaseContext(ctx->hCryptProv, 0);
}
#elif defined(USE_AXTLS)
#include <axTLS/os_int.h>
#include <axTLS/crypto.h>
#else
/* When no other crypto library is available we use this code segment */
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment