如何从OpenSSL源代码中禁用/删除特定的OpenSSL加密算法?

时间:2017-06-05 06:52:35

标签: c openssl

如何使用特定的加密算法添加/创建c / c ++ OpenSSL静态库?假设我不想要 md5 实现。如何在没有md5的情况下创建库?

1 个答案:

答案 0 :(得分:1)

在configure脚本中你可以指定no-<cipher>选项,它会在没有你指定的密码的情况下构建openssl,你可以从openssl包中引用INSTALL文件

  no-<cipher>   Build without the specified cipher (bf, cast, des, dh, dsa,
                hmac, md2, md5, mdc2, rc2, rc4, rc5, rsa, sha).
                The crypto/<cipher> directory can be removed after running
                "make depend".