mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
added galois arithmetic toolkit
This commit is contained in:
parent
a1716e5d98
commit
79f5d1af70
2 changed files with 15 additions and 0 deletions
|
@ -64,6 +64,7 @@ Installers for the following tools are included:
|
|||
| crypto | [fastcoll](https://www.win.tue.nl/hashclash/) | An md5sum collision generator. | <!--tool--><!--test-->
|
||||
| crypto | [foresight](https://github.com/ALSchwalm/foresight) | A tool for predicting the output of random number generators. To run, launch "foresee". | <!--tool--><!--test-->
|
||||
| crypto | [featherduster](https://github.com/nccgroup/featherduster) | An automated, modular cryptanalysis tool. | <!--tool--><!--no-test-->
|
||||
| crypto | [galois](http://web.eecs.utk.edu/~plank/plank/papers/CS-07-593) | A fast galois field arithmetic library/toolkit. | <!--tool--><!--test-->
|
||||
| crypto | [hashkill](https://github.com/gat3way/hashkill) | Hash cracker. | <!--tool--><!--test-->
|
||||
| crypto | [hashpump](https://github.com/bwall/HashPump) | A tool for performing hash length extension attaacks. | <!--tool--><!--test-->
|
||||
| crypto | [hashpump-partialhash](https://github.com/mheistermann/HashPump-partialhash) | Hashpump, supporting partially-unknown hashes. | <!--tool--><!--test-->
|
||||
|
|
14
galois/install
Executable file
14
galois/install
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
wget http://web.eecs.utk.edu/~plank/plank/papers/CS-07-593/galois.tar
|
||||
|
||||
mkdir -p galois
|
||||
cd galois
|
||||
tar xvf ../galois.tar
|
||||
make
|
||||
cd ..
|
||||
|
||||
mkdir -p bin
|
||||
cd bin
|
||||
ln -s ../galois/{gf_basic_tester,gf_div,gf_ilog,gf_inverse,gf_log,gf_mult,gf_xor,gf_xor_tester} .
|
||||
cd ..
|
Loading…
Reference in a new issue