From: Richard Levitte Date: Tue, 1 Dec 2015 23:22:30 +0000 (+0100) Subject: Cleanup: Remove M_EVP_MD_* macros X-Git-Tag: OpenSSL_1_1_0-pre1~106 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=67565323589932ef36e84d95b07bcc97325c9961;p=oweals%2Fopenssl.git Cleanup: Remove M_EVP_MD_* macros These macros were only meant for crypto/evp, and are now entirely unused. Reviewed-by: Rich Salz --- diff --git a/crypto/evp/evp_locl.h b/crypto/evp/evp_locl.h index 979cd8391a..918ff0a6fa 100644 --- a/crypto/evp/evp_locl.h +++ b/crypto/evp/evp_locl.h @@ -71,15 +71,6 @@ struct evp_md_ctx_st { int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count); } /* EVP_MD_CTX */ ; -# define M_EVP_MD_size(e) ((e)->md_size) -# define M_EVP_MD_block_size(e) ((e)->block_size) -# define M_EVP_MD_CTX_set_flags(ctx,flgs) ((ctx)->flags|=(flgs)) -# define M_EVP_MD_CTX_clear_flags(ctx,flgs) ((ctx)->flags&=~(flgs)) -# define M_EVP_MD_CTX_test_flags(ctx,flgs) ((ctx)->flags&(flgs)) -# define M_EVP_MD_type(e) ((e)->type) -# define M_EVP_MD_CTX_type(e) M_EVP_MD_type(M_EVP_MD_CTX_md(e)) -# define M_EVP_MD_CTX_md(e) ((e)->digest) - /* Macros to code block cipher wrappers */ /* Wrapper functions for each cipher mode */