From 33b439e4136eb04fbb146422aa029f37bb1ba724 Mon Sep 17 00:00:00 2001 From: Aram Date: Tue, 12 Apr 2016 22:01:18 +0200 Subject: [PATCH] Copyright notices / comments --- crypto1_bs.c | 2 +- crypto1_bs_crack.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/crypto1_bs.c b/crypto1_bs.c index cc68246..0f12495 100644 --- a/crypto1_bs.c +++ b/crypto1_bs.c @@ -1,4 +1,4 @@ -// Bit-sliced Crypto-1 implementation (C) 2015 by Aram Verstegen +// Bit-sliced Crypto-1 implementation (C) 2015-2016 by Aram Verstegen // The cipher states are stored with the least significant bit first, hence all bit indexes are reversed here #include "crypto1_bs.h" diff --git a/crypto1_bs_crack.c b/crypto1_bs_crack.c index 50db40e..6b29c91 100644 --- a/crypto1_bs_crack.c +++ b/crypto1_bs_crack.c @@ -1,3 +1,6 @@ +// Bit-sliced Crypto-1 brute-forcing implementation (C) 2015-2016 by Aram Verstegen +// Builds on the data structures returned by CraptEV1 craptev1_get_space(nonces, threshold, uid) + #include #include "crypto1_bs_crack.h"