Add raw SHA inputs and hashtypes to ShaToHex #47

Merged
jordan merged 2 commits from lda/Cytoplasm:sha-revamp into master 2024-08-27 13:38:27 +00:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit 5df458f568 - Show all commits

View file

@ -29,7 +29,7 @@
#include <limits.h>
/* TODO: Verify LibreSSL support later */
#if TLS_IMPL == TLS_OPENSSL
#if defined(TLS_IMPL) && (TLS_IMPL == TLS_OPENSSL)
#include <openssl/sha.h>

View file

@ -31,7 +31,7 @@
/* TODO: Verify LibreSSL support later */
#if TLS_IMPL == TLS_OPENSSL
#if defined(TLS_IMPL) && (TLS_IMPL == TLS_OPENSSL)
#include <openssl/sha.h>

View file

@ -23,7 +23,7 @@
*/
#include <Tls.h>
#if TLS_IMPL == TLS_LIBRESSL
#if defined(TLS_IMPL) && (TLS_IMPL == TLS_LIBRESSL)
#include <Memory.h>
#include <Log.h>

View file

@ -23,7 +23,7 @@
*/
#include <Tls.h>
#if TLS_IMPL == TLS_OPENSSL
#if defined(TLS_IMPL) && (TLS_IMPL == TLS_OPENSSL)
#include <Memory.h>
#include <Log.h>