Ai
30 Star 131 Fork 0

Gitee 极速下载/OpenSSL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/openssl/openssl
克隆/下载
lms_sig.c 605 Bytes
一键复制 编辑 原始数据 按行查看 历史
slontis 提交于 2024-10-01 10:35 +08:00 . Add LMS Signature verification.
/*
* Copyright 2025 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#include "crypto/lms_sig.h"
/**
* @brief Create a new LMS_SIG object
*/
LMS_SIG *ossl_lms_sig_new(void)
{
return OPENSSL_zalloc(sizeof(LMS_SIG));
}
/**
* @brief Destroy an existing LMS_SIG object
*/
void ossl_lms_sig_free(LMS_SIG *sig)
{
OPENSSL_free(sig);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/mirrors/openssl.git
git@gitee.com:mirrors/openssl.git
mirrors
openssl
OpenSSL
master

搜索帮助