aead_request_set_ad 头文件
时间: 2023-07-06 09:44:02 浏览: 87
Ascon 的 Rust 实现
5星 · 资源好评率100%
`aead_request_set_ad` 函数定义在 `crypto/internal/aead.h` 头文件中,因此需要在代码中包含该头文件,才能使用 `aead_request_set_ad` 函数。下面是一个示例:
```c
#include <crypto/internal/aead.h>
/* 在代码中使用 aead_request_set_ad 函数 */
void my_func(struct aead_request *req, const u8 *ad, unsigned int adlen) {
aead_request_set_ad(req, ad, adlen);
}
```
在实际应用中,如果要使用加密、解密等功能,需要包含更多的头文件,并按照库的使用方法进行调用。
阅读全文