X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fhash.h;h=5bd47acd1f14081ec64ecea688994ea869f42d8e;hb=8f0d0a3138e138ffa6bcc94c8378f5eb22573f0e;hp=89bedb926ebd804ee44d48f2f8f158231992564b;hpb=5fb822fc4839e253d2f839ba7966bc25a5329ac1;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/hash.h b/src/src/hash.h index 89bedb926..5bd47acd1 100644 --- a/src/src/hash.h +++ b/src/src/hash.h @@ -1,7 +1,7 @@ /* * Exim - an Internet mail transport agent * - * Copyright (C) 2016 Exim maintainers + * Copyright (C) 1995 - 2018 Exim maintainers * * Hash interface functions */ @@ -12,7 +12,6 @@ #define HASH_H #include "sha_ver.h" -#include "blob.h" #ifdef SHA_OPENSSL # include @@ -29,14 +28,33 @@ /* Hash context for the exim_sha_* routines */ +typedef enum hashmethod { + HASH_BADTYPE, + HASH_NULL, + HASH_SHA1, + + HASH_SHA2_256, + HASH_SHA2_384, + HASH_SHA2_512, + + HASH_SHA3_224, + HASH_SHA3_256, + HASH_SHA3_384, + HASH_SHA3_512, +} hashmethod; + typedef struct { - BOOL is_sha1; - int hashlen; + hashmethod method; + int hashlen; #ifdef SHA_OPENSSL union { SHA_CTX sha1; /* SHA1 block */ - SHA256_CTX sha2; /* SHA256 block */ + SHA256_CTX sha2_256; /* SHA256 or 224 block */ + SHA512_CTX sha2_512; /* SHA512 or 384 block */ +#ifdef EXIM_HAVE_SHA3 + EVP_MD_CTX * mctx; /* SHA3 block */ +#endif } u; #elif defined(SHA_GNUTLS) @@ -57,10 +75,9 @@ typedef struct { } hctx; -extern void exim_sha_init(hctx *, BOOL); +extern BOOL exim_sha_init(hctx *, hashmethod); extern void exim_sha_update(hctx *, const uschar *a, int); extern void exim_sha_finish(hctx *, blob *); -extern int exim_sha_hashlen(hctx *); #endif /* End of File */