提交 41e455bf 编写于 作者: N Nils Larsch

test, remove unnecessary const cast

上级 59b6836a
......@@ -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);
}
}
......
......@@ -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;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册