X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fm_null.c;h=cb0721699dba3b3c07ea484b90137bb33a62934f;hp=e2dadf3dabc1136710c6ca59b0216bbbc35a21d8;hb=e0c1ea9038f6a9e33dff3c7654b2a1b97e3d0e2c;hpb=ec577822f95a8bca0023c5c77cef1a4916822d4a diff --git a/crypto/evp/m_null.c b/crypto/evp/m_null.c index e2dadf3dab..cb0721699d 100644 --- a/crypto/evp/m_null.c +++ b/crypto/evp/m_null.c @@ -62,25 +62,32 @@ #include #include -static void function(void) - { - } +static int init(EVP_MD_CTX *ctx) + { return 1; } + +static int update(EVP_MD_CTX *ctx,const void *data,size_t count) + { return 1; } -static EVP_MD null_md= +static int final(EVP_MD_CTX *ctx,unsigned char *md) + { return 1; } + +static const EVP_MD null_md= { NID_undef, NID_undef, 0, - function, - function, - function, - + 0, + init, + update, + final, + NULL, + NULL, EVP_PKEY_NULL_method, 0, sizeof(EVP_MD *), }; -EVP_MD *EVP_md_null(void) +const EVP_MD *EVP_md_null(void) { return(&null_md); }