Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cr-marcstevens/sha1collisiondetection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Müller <mail@mueller-martin.net>2017-02-28 17:28:44 +0300
committerMartin Müller <mail@mueller-martin.net>2017-02-28 17:28:44 +0300
commit0d80aa0cbb38a69c76457e2f44d84f807d24604f (patch)
tree281b8cb74c65e04644e68c509ef0d0e5037657d1 /README.md
parentcb10f50d20a1c6c9efbf526c5da510c492d595b9 (diff)
Remove trailing whitespace and mixed indentation
Some linters (e.g. Syntastic) complain about trailing whitespace and mixed indentation (mixing tabs and spaces). To address this, appropriate warnings where mostly fixed (except parts of ubc_check.c which had some special alignment for some OR conditions).
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index da32271..2fa9f28 100644
--- a/README.md
+++ b/README.md
@@ -18,8 +18,8 @@ They will compute the SHA-1 hash of any given file and additionally will detect
More specifically they will detect any cryptanalytic collision attack against SHA-1 using any of the top 32 SHA-1 disturbance vectors with probability 1:
```
- I(43,0), I(44,0), I(45,0), I(46,0), I(47,0), I(48,0), I(49,0), I(50,0), I(51,0), I(52,0),
- I(46,2), I(47,2), I(48,2), I(49,2), I(50,2), I(51,2),
+ I(43,0), I(44,0), I(45,0), I(46,0), I(47,0), I(48,0), I(49,0), I(50,0), I(51,0), I(52,0),
+ I(46,2), I(47,2), I(48,2), I(49,2), I(50,2), I(51,2),
II(45,0), II(46,0), II(47,0), II(48,0), II(49,0), II(50,0), II(51,0), II(52,0), II(53,0), II(54,0), II(55,0), II(56,0),
II(46,2), II(49,2), II(50,2), II(51,2)
```