Skip to content

Commit

Permalink
Help completed, added Keccak optimized in assembler.
Browse files Browse the repository at this point in the history
  • Loading branch information
ph4r05 committed Jun 26, 2014
1 parent 36f9294 commit cee86ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ int main(int argc, char** argv) {
("rounds,r", po::value<int>()->default_value(-1)->implicit_value(-1), "Number of rounds of the cipher.")
("threads,t", po::value<uint>()->default_value(1)->implicit_value(1), "Number of threads to use for computation.")
("cube", po::value<uint>()->default_value(0)->implicit_value(0), "Starts cube attack.")
("alg", po::value<uint>()->default_value(0)->implicit_value(0), "Algorithm to analyze. 0=AES, 1=Keccak.")
("alg", po::value<uint>()->default_value(0)->implicit_value(0), "Algorithm to analyze. 0=AES, 1=Keccak, 3=Keccak assm optimized")
("relations", po::value<uint>()->default_value(128)->implicit_value(128), "Number of relations finding rounds.")
("subcube", po::value<uint>()->default_value(0)->implicit_value(0), "Subcubes to compute in parallel.")
("wkey", po::value<uint>()->default_value(1)->implicit_value(1), "Weight of the key cube.")
Expand Down

0 comments on commit cee86ef

Please sign in to comment.