-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcryptopals-1-6.go
229 lines (173 loc) · 4.61 KB
/
cryptopals-1-6.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*
Copyright (c) 2017, AverageSecurityGuy
# All rights reserved.
Complete challenge 6 from Cryptopals set 1.
http://cryptopals.com/sets/1
Usage:
$ go run cryptopals-1-6.go
*/
package main
import (
"os"
"fmt"
"math"
"bufio"
"strings"
"encoding/hex"
"encoding/base64"
)
func check(e error) {
if e != nil {
fmt.Printf("Error: %s\n", e.Error())
os.Exit(0)
}
}
func from_hex(data string) []byte {
b, err := hex.DecodeString(data)
check(err)
return b
}
func xor(b1 []byte, b2 byte) string {
result := make([]byte, len(b1))
for i, _ := range b1 {
result[i] = b1[i] ^ b2
}
return string(result)
}
func score(data string) float64 {
/*
Score the string as English using chi-squared. We send a lower-cased string
to this function so only have to worry about counting lowercase letters.
*/
counts := make(map[rune]int)
chi2 := 0.0
alpha := "abcdefghijklmnopqrstuvwxyz "
total := 0
freq := map[rune]float64 {
'a': 0.08167, 'b': 0.01492, 'c': 0.02782, 'd': 0.04253, 'e': 0.12702,
'f': 0.02228, 'g': 0.02015, 'h': 0.06094, 'i': 0.06966, 'j': 0.00153,
'k': 0.00772, 'l': 0.04025, 'm': 0.02406, 'n': 0.06749, 'o': 0.07507,
'p': 0.01929, 'q': 0.00095, 'r': 0.05987, 's': 0.06327, 't': 0.09056,
'u': 0.02758, 'v': 0.00978, 'w': 0.02360, 'x': 0.00150, 'y': 0.01974,
'z': 0.00074, ' ': 0.23200}
// Get a count of all the letters and the total number of letters.
for _, c := range data {
if strings.Contains(alpha, string(c)) {
total = total + 1
_, ok := counts[c]
if ok {
counts[c] = counts[c] + 1
} else {
counts[c] = 1
}
}
}
// Do not calculate the chi-squared value unless the string is at least 70%
// ASCII alphabet.
if total < int(float64(0.6) * float64(len(data))) {
return 1000.0
}
// Calculate chi-squared for each letter
for _, k := range alpha {
expected := float64(total) * freq[k]
actual := float64(counts[k])
val := math.Pow(actual - expected, 2)/expected
chi2 = chi2 + val
}
return chi2
}
func break_xor(data []byte) byte {
low := 1000.0
key := byte(0)
// Bruteforce the key by XORing each possible key, analyzing the decrypted
// message, and scoring it. Lowest score wins.
for i:=0; i<256; i++ {
k := byte(i)
dec := xor(data, k)
total := score(strings.ToLower(dec))
if total < low {
low = total
key = k
}
}
return key
}
func get_data(filename string) []byte {
file, err := os.Open(filename)
check(err)
var temp []byte
scan := bufio.NewScanner(file)
for scan.Scan() {
temp = append(temp, []byte(scan.Text())...)
}
data := make([]byte, base64.StdEncoding.DecodedLen(len(temp)))
_, err = base64.StdEncoding.Decode(data, temp)
check(err)
return data
}
func hamming(s1, s2 []byte) int {
total := 0
if len(s1) != len(s2) {
fmt.Println("String unequal. Cannot calculate Hamming distance.")
return 0
}
for i, _ := range s1 {
record := fmt.Sprintf("%08b", s1[i] ^ s2[i])
for _, b := range record {
if b == '1' {
total = total + 1
}
}
}
return total
}
func chunk(data []byte, size int) [][]byte {
var chunks [][]byte
for i:=0; i<len(data); i=i+size {
chunks = append(chunks, data[i:i+size])
}
return chunks
}
func transpose(data [][]byte) [][]byte {
var transpose [][]byte
for i, _ := range data[0] {
var temp []byte
for j, _ := range data {
temp = append(temp, data[j][i])
}
transpose = append(transpose, temp)
}
return transpose
}
func get_key_size(data []byte) int {
normal := 1000
size := 0
for s:=2; s<=40; s++ {
chunks := chunk(data, s)
ham := 0
for i:=0; i<10; i++ {
ham = ham + hamming(chunks[i], chunks[i+1])
}
ham = ham / s
if ham < normal {
normal = ham
size = s
}
}
return size
}
func main() {
fmt.Println("Cryptopals Set 1")
fmt.Println("================")
fmt.Println("Challenge 6")
fmt.Println("-----------")
crypt := get_data("data/6.txt")
size := get_key_size(crypt)
chunks := chunk(crypt, size)
trans := transpose(chunks)
var key []byte
for _, t := range trans {
key = append(key, break_xor(t))
}
fmt.Println(string(key))
}