Loading crypto/evp/bio_md.c +1 −1 Original line number Diff line number Diff line Loading @@ -153,7 +153,7 @@ static int md_write(BIO *b, const char *in, int inl) { if (ret > 0) { EVP_DigestUpdate(ctx,(unsigned char *)in, EVP_DigestUpdate(ctx,(const unsigned char *)in, (unsigned int)ret); } } Loading crypto/evp/e_null.c +1 −1 Original line number Diff line number Diff line Loading @@ -95,7 +95,7 @@ static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) { if (in != out) memcpy((char *)out,(char *)in,(int)inl); memcpy((char *)out,(const char *)in,(size_t)inl); return 1; } Loading
crypto/evp/bio_md.c +1 −1 Original line number Diff line number Diff line Loading @@ -153,7 +153,7 @@ static int md_write(BIO *b, const char *in, int inl) { if (ret > 0) { EVP_DigestUpdate(ctx,(unsigned char *)in, EVP_DigestUpdate(ctx,(const unsigned char *)in, (unsigned int)ret); } } Loading
crypto/evp/e_null.c +1 −1 Original line number Diff line number Diff line Loading @@ -95,7 +95,7 @@ static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) { if (in != out) memcpy((char *)out,(char *)in,(int)inl); memcpy((char *)out,(const char *)in,(size_t)inl); return 1; }