gpt4 book ai didi

c - 使用 libsodium 加密

转载 作者:太空宇宙 更新时间:2023-11-04 08:43:49 24 4
gpt4 key购买 nike

我一直在努力使用 libsodium 中的 crypto_secretbox_easy() 来加密/解密一些数据。 .我似乎找不到任何关于用法的好文档。

我想从用户那里得到一个密码,用它来生成一个 key ,然后用它加密/解密数据。

我在下面发布的玩具代码的问题是 crypto_secretbox_open_easy() 从 verify_16.c 中返回 -1。有谁知道我在哪里可以找到显示如何使用此界面或可能出什么问题的资源?谢谢!

 unsigned char * cipher;
unsigned char * decoded;
unsigned char * message;
unsigned long long message_len = 32;
size_t noncelen = sizeof(char) * crypto_secretbox_noncebytes();
size_t keylen = sizeof(char) * crypto_secretbox_keybytes();
unsigned char * nonce = calloc(noncelen, noncelen);
unsigned char * key = calloc(keylen, keylen);

message = calloc(32*sizeof(char), sizeof(char) * 32);
cipher = calloc(32*sizeof(char), sizeof(char) * 32);
decoded = calloc(32*sizeof(char), sizeof(char) * 32);

crypto_secretbox_easy((unsigned char *)cipher, (const unsigned char *)message,
message_len, nonce, key);

crypto_secretbox_open_easy((unsigned char *)decoded, (const unsigned char *) cipher,
message_len, nonce, key);

最佳答案

给crypto_secretbox_open_easy()的长度应该是经过身份验证/加密的消息的长度,而不是message_len,因为添加了身份验证标签。此标签的长度为 crypto_box_MACBYTES。

关于c - 使用 libsodium 加密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22462407/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com