-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
420 lines (366 loc) · 7.95 KB
/
main.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
package main
import (
"bufio"
"bytes"
"encoding/base64"
"flag"
"fmt"
"io/ioutil"
"log"
"os"
)
const (
ja = byte(53)
jb = byte(54)
maxKey = 26
)
var verbose = false
func main() {
var keyName, inName, outName string
flag.StringVar(&keyName, "k", "shared.key", "the shared key to use")
flag.StringVar(&inName, "i", "in.txt", "the input")
flag.StringVar(&outName, "o", "out.txt", "the output")
op := flag.String("op", "enc", "[enc, dec, key, dkey] key - takes a dec of cards input and makes a key, dkey, makes a key from a default deck")
flag.BoolVar(&verbose, "v", false, "verbose prints the deck at each stage")
orgHelp := flag.Usage
flag.Usage = func() {
orgHelp()
setupMaps(true)
}
flag.Parse()
setupMaps(false)
in, err := ioutil.ReadFile(inName)
if err != nil {
log.Fatal(err)
}
switch *op {
case "enc":
key := readKey(keyName)
in = cleanInput(in)
o := encrypt(key, in)
err = writeChars(o, outName, true)
case "dec":
key := readKey(keyName)
in = cleanInput(in)
o := decrypt(key, in)
err = writeChars(o, outName, false)
case "key":
cards, err := ioutil.ReadFile(inName)
if err != nil {
break
}
key := cardsToKey(cards)
err = writeKey(key, keyName)
case "dkey":
err = defaultKey(keyName)
default:
log.Fatal(*op, "unsupported")
}
if err != nil {
log.Fatal(err)
}
}
func decrypt(k key, in []byte) []byte {
sz := len(in)
ks := k.stream(sz)
o := make([]byte, sz)
for i, v := range in {
k := ks[i]
// only generate up to our max modulus value
if k > maxKey {
k -= maxKey
}
if v < k {
v += maxKey
}
o[i] = v - k
}
return o
}
func encrypt(k key, in []byte) []byte {
sz := len(in)
ks := k.stream(sz)
if verbose {
for _, v := range ks {
fmt.Printf("%d ", v)
}
}
o := make([]byte, sz)
for i, v := range in {
k := ks[i]
// only generate up to our max modulus value
if k > maxKey {
k -= maxKey
}
o[i] = k + v
if o[i] > maxKey {
o[i] = o[i] - maxKey
}
}
return o
}
// defaultKey just generates a default key and writes it in base64
func defaultKey(fName string) error {
k := cardsToKey([]byte(`
1C 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC
1D 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD
1H 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH
1S 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS
*A *B`))
return writeKey(k, fName)
}
// readKey reads a base64 encoded key
func readKey(fName string) key {
keyB64, err := ioutil.ReadFile(fName)
if err != nil {
log.Fatal(err)
}
dst := make([]byte, base64.StdEncoding.DecodedLen(len(keyB64)))
if _, err := base64.StdEncoding.Decode(dst, keyB64); err != nil {
log.Fatal(err)
}
return key(dst)
}
// writeKey writes a key to base 64
func writeKey(k key, fName string) error {
dst := make([]byte, base64.StdEncoding.EncodedLen(len(k)))
base64.StdEncoding.Encode(dst, k)
return ioutil.WriteFile(fName, dst, 0644)
}
// writeChars writes the bytes out mapped to chars from 'A' onwards
// if block is true then writes 4 blocks of 5 chars per line - like old school encrypted stuff
func writeChars(d []byte, fName string, block bool) error {
f, err := os.Create(fName)
if err != nil {
return err
}
defer f.Close()
w := bufio.NewWriter(f)
for i, v := range d {
if err := w.WriteByte('A' + v - 1); err != nil {
return err
}
if !block {
continue
}
// block version
if i%5 == 4 {
if err := w.WriteByte(' '); err != nil {
return err
}
}
if i%20 == 19 {
if err := w.WriteByte('\n'); err != nil {
return err
}
}
}
if err := w.WriteByte('\n'); err != nil {
return err
}
return w.Flush()
}
// cleanInput takes the input bytes, removes whitespace
// maps upper case chars to values where 'A' = 1
func cleanInput(in []byte) []byte {
in = bytes.Join(bytes.Fields(in), nil)
for i, v := range in {
in[i] = v - 'A' + 1
}
pads := 4 - (len(in)-1)%5
for i := 0; i < pads; i++ {
in = append(in, 9+byte(i)) // pads with IJKL
}
return in
}
// stream generates a key stream of count size
func (k *key) stream(count int) []byte {
r := make([]byte, count)
tot := 0
for tot < count {
cardVal := k.oneRound()
// if we land on any joker - ignore this round
if cardVal >= ja {
continue
}
r[tot] = cardVal
tot++
}
return r
}
// oneRound generates one key round
func (k *key) oneRound() byte {
sz := len(*k)
if verbose {
fmt.Println("\nstart")
k.log()
}
// move A joker down 1
k.move(ja, 1)
if verbose {
fmt.Println("\nmoved ja")
k.log()
}
// move B joker down 2
k.move(jb, 2)
if verbose {
fmt.Println("\nmoved jb")
k.log()
}
// find the top most joker
top := k.findVal(ja)
bot := k.findVal(jb)
if top >= bot {
b := bot
bot = top
top = b
}
if verbose {
fmt.Printf("top:%d, bot:%d\n", top, bot)
}
// tripple cut into new key
newKey := make([]byte, sz)
p := 0
for i := bot + 1; i < sz; i++ {
newKey[p] = (*k)[i]
p++
}
for i := top; i <= bot; i++ {
newKey[p] = (*k)[i]
p++
}
for i := 0; i < top; i++ {
newKey[p] = (*k)[i]
p++
}
if verbose {
fmt.Println("\ntripple cut")
key(newKey).log()
}
// get the value of the bottom of the deck for the count cut
// handling jokers
count := enforceMaxCardVal(newKey[sz-1])
if verbose {
fmt.Println("\ncount cut:", count)
}
// the count cut copies from the newKey above back into the original key
p = 0
// from the count onwards becomes the top
for i := int(count); i < sz-1; i++ {
(*k)[p] = newKey[i]
p++
}
// and the top becomes the bottom - up to the last card which stays the same
for i := 0; i < int(count); i++ {
(*k)[p] = newKey[i]
p++
}
// put the last card back in place
(*k)[sz-1] = newKey[sz-1]
if verbose {
fmt.Println("\nafter count cut")
k.log()
}
// get the value of the top card to count down
tc := (*k)[0]
if verbose {
fmt.Println("\ntop card", valToCard[tc], tc)
}
// handle jokers
tc = enforceMaxCardVal(tc)
// get the value of this card
val := (*k)[tc]
if verbose {
fmt.Println("\nkey val: ", valToCard[val], val)
}
return val
}
// enforceMaxCardVal simply makes sure both jokers are counted as 53
func enforceMaxCardVal(in byte) byte {
if in > 52 {
return 53 // both jokers value 53
}
return in
}
// cardsToKey converts the string based deck format to a key
func cardsToKey(cards []byte) key {
r := key{}
cs := bytes.Fields(cards)
for _, c := range cs {
r = append(r, cardToVal[string(c)])
}
return r
}
// key models the deck based key
type key []byte
// findVal returns the index of the card with value val
func (k key) findVal(val byte) int {
for i, v := range k {
if val == v {
return i
}
}
return -1
}
// move moves one card forward in the key deck
func (k key) move(val byte, off int) {
sz := len(k)
pos := k.findVal(val)
// if this will wrap around then becomes an insert
if pos+off >= sz {
// slide the deck down one between the old and new positions
insert := (pos + off) % sz
for i := pos; i > insert; i-- {
k[i] = k[i-1]
}
// and set the new position to val
k[insert+1] = val
return
}
// otherwise move everything up one and set the new position to val
for i := 0; i < off; i++ {
k[pos+i] = k[pos+i+1]
}
k[pos+off] = val
return
}
// log prints the deck out
func (k key) log() {
for i, v := range k {
if i%13 == 0 {
println()
}
print(valToCard[v], " ")
}
println()
}
// some maps to go from and to card string to their representative value
var (
cardToVal = map[string]byte{}
valToCard = map[byte]string{}
)
// setupMaps sets up the maps from card strings to values and visa versa
func setupMaps(show bool) {
if show {
fmt.Fprintln(os.Stderr, " Card Values:")
}
val := byte(1)
// bridge clubs, diamonds, hearts, and spades
for _, suit := range []string{"C", "D", "H", "S"} {
for _, card := range []string{"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K"} {
c := card + suit
if show {
fmt.Fprintf(os.Stderr, " %s\t%d\n", c, int(val))
}
cardToVal[c] = val
valToCard[val] = c
val++
}
}
j := "*A"
cardToVal[j] = ja
valToCard[ja] = j
j = "*B"
cardToVal[j] = jb
valToCard[jb] = j
}