基于openssl的sm2算法实现中报错 错误 LNK1104 无法打开文件“libeay32.lib,如何解决?(语言-c语言)

根据了解:

自 1.1.0 版 OpenSSL 已将其库名称更改为:
libeay32.dll -> libcrypto.dll
ssleay32.dll -> libssl.dll
来自:https://www.coder.work/article/566290

// \file:sm2.c
//SM2 Algorithm
//2011-11-10
//author:goldboar
//email:goldboar@163.com
//depending:opnessl library

//SM2 Standards: http://www.oscca.gov.cn/News/201012/News_1197.htm
#pragma comment(lib,"libssl.lib")
#pragma comment(lib,"libcrypto.lib")

#include <limits.h>
#include <openssl/ec.h>
#include <openssl/bn.h>
#include <openssl/rand.h>
#include <openssl/err.h>
#include <openssl/ecdsa.h>
#include <openssl/ecdh.h>
#include "kdf.h"

但是在代码中并没有使用libeay32.lib 为什么会报错显示无法打开文件libeay32.lib呢