作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚尝试了 NaCl 网站上的 Xsalsa20 代码。我无法编译它。
#include "build/BlackDragon/include/x86/crypto_stream.h"
#include<stdio.h>
int main(){
//const unsigned char m[crypto_stream_xsalsa20;
const unsigned char k[crypto_stream_xsalsa20_KEYBYTES] = "1234567890123456789012345678901";
const unsigned char n[crypto_stream_xsalsa20_NONCEBYTES] = "12345678901234567890123";
unsigned char c[51];
unsigned long long len;
len = 50;
crypto_stream_xsalsa20(c,len,n,k);
//printf("%s",m);
return 0;
}
当我尝试使用 GCC 编译此文件时,我收到以下错误消息。
/tmp/ccNaI8Z1.o: In function `main':
Test.cpp:(.text+0xbc): undefined reference to `crypto_stream_xsalsa20_ref'
/tmp/ccNaI8Z1.o:(.eh_frame+0x13): undefined reference to `__gxx_personality_v0'
collect2:error: ld returned 1 exit status
有人可以帮我解决这个问题吗?
PS:此代码位于我编译 NaCl 的 NaCl 文件夹内
最佳答案
我通过将库安装到系统路径中解决了这个问题。为了方便起见,您可以使用
apt-get install libnacl-dev
关于c - NaCl XSalso20 C 代码无法编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25370664/
我是一名优秀的程序员,十分优秀!