#attack #crypto

fractus

Cryptographic attack library for Rust and Python

3 releases

0.1.7 Feb 24, 2024
0.1.6 Feb 24, 2024
0.1.0 Feb 24, 2024

#474 in Cryptography

Download history 170/week @ 2024-02-18 201/week @ 2024-02-25 13/week @ 2024-03-03 12/week @ 2024-03-10 51/week @ 2024-03-31

64 downloads per month

MIT license

135KB
2.5K SLoC

Fractus

Fractus is a cryptographic attack library written in rust. It is also available through python

Run

Rust

cargo add fractus

use fractus::sha2_256;

let m = b"abc";
let h = sha2_256::compute(&m);
let e = b"cde";
let mut c = m.to_vec();
c.extend(sha2_256::padding(m.len()));
c.extend(e);
let e = sha2_256::extend(&h, m.len(), e);
assert_eq!(e, sha2_256::compute(c));

Python

pip install fractus

from fractus import sha2_256

m = b'secret' + b'abc'
h = sha2_256.compute(m)
e = b'test'
assert sha2_256.extend(h, len(m), e) == sha2_256.compute(m + sha2_256.padding(len(m)) + e)

Features

Length Extension Attack

  • MD4
  • MD5
  • SHA0
  • SHA1
  • SHA2_256
  • SHA2_512
  • Ripemd128
  • Ripemd160
  • Ripemd256
  • Ripemd320
  • Whirlpool

Dependencies

~0–6.5MB
~13K SLoC