aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: ce217ec7a07034256fb36fae41b9bc3c5e8528f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
My C11 SHA256 implementation.

See `tests.c` for usage.

Benchmarks
==========
    > time -p ./sha256 ~/Videos/8x*avi > /dev/null
    rleal 9.39
    user 9.10
    sys 0.29
    > time -p sha256sum ~/Videos/8x*avi > /dev/null
    real 12.04
    user 11.73
    sys 0.31
    > time -p openssl sha256 ~/Videos/8x*avi > /dev/null
    real 6.36
    user 6.01
    sys 0.32