我正在开发一个使用统计攻击来破解wep密钥的应用程序.
当我使用我的makefile(上面)编译时,我收到此错误:
ld:无法与架构x86_64的主可执行文件'execStatAttack'链接
clang:错误:链接器命令失败,退出代码为1(使用-v查看调用)make:* [statAttack]错误1
我的项目包含这些文件:
statAttack.cpp:包含main函数,使用上面的文件
rc4.h + rc4.cpp:具有那些功能
Run Code Online (Sandbox Code Playgroud)#include <iostream> #include <stdlib.h> #include <stdio.h #include <vector #ifndef RC4 #define RC4 using namespace std int* rc4(int); int random_byte(); vector<int> cipher_mess_seq (long, int); #endif
Run Code Online (Sandbox Code Playgroud)#include <iostream> #include <stdlib.h> #include <stdio.h> #include <utility> #include <fstream> #include <vector> #include <string> #ifndef BIAIS #define BIAIS using namespace std; typedef pair<int,double> IntegerDoublePair; vector<IntegerDoublePair> get_bias (string, int); int compareTo (double, double); vector<IntegerDoublePair> get_all_biases(string); #endif
Run Code Online (Sandbox Code Playgroud)CC = g++ CFLAGS = -Wall …
我正在尝试在三星智能电视上开发一个应用程序,它可以在您看电视时显示通知。通知将包含有关足球比赛、Twitter 消息(可以使用 Twitter 向电视发送消息)等信息...
智能电视应用程序将从网络服务器获取信息,我想到使用发布/订阅模型:
你可以在Github中找到这个项目(如果你有兴趣,请不要犹豫贡献)。
我从未开发过智能电视应用程序,所以我想知道:
对我来说,最完美的就是智能电视的 Web API。这样我就可以调用服务来显示通知或其他内容......
感谢您的时间 !