Skip to content

Commit 0a4a2f9

Browse files
committed
Initial commit, after some cleanup
0 parents  commit 0a4a2f9

19 files changed

+1157
-0
lines changed

challenge1_1.go

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
package main
2+
3+
import (
4+
"encoding/hex"
5+
"fmt"
6+
"log"
7+
)
8+
9+
//import "encoding/hex"
10+
11+
const (
12+
input = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
13+
expected = "SSdtIGtpbGxpbmcgeW91ciBicmFpbiBsaWtlIGEgcG9pc29ub3VzIG11c2hyb29t"
14+
inputWiki = "Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure."
15+
expectedWiki = "TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlzIHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2YgdGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGludWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLCBleGNlZWRzIHRoZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhcm5hbCBwbGVhc3VyZS4="
16+
encodeStd = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
17+
)
18+
19+
func base64(c byte) byte {
20+
return encodeStd[c]
21+
}
22+
23+
func encode(input []byte) []byte {
24+
decoded := input
25+
// Pad with 0 bytes
26+
for len(decoded)%3 != 0 {
27+
decoded = append(decoded, 0)
28+
}
29+
30+
var result []byte
31+
for i := 0; i < len(decoded)/3; i++ {
32+
current := uint32(decoded[3*i]) << 16
33+
current |= uint32(decoded[3*i+1]) << 8
34+
current |= uint32(decoded[3*i+2])
35+
for b := 3; b >= 0; b-- {
36+
shiftBy := 6 * b
37+
mask := uint32(63) << shiftBy
38+
r := byte((current & mask) >> shiftBy)
39+
result = append(result, base64(r))
40+
}
41+
}
42+
fillBytes := len(decoded) - len(input)
43+
for i := 0; i < fillBytes; i++ {
44+
result[len(result)-1-i] = '='
45+
}
46+
return result
47+
}
48+
49+
func main() {
50+
decoded, _ := hex.DecodeString(input)
51+
result := encode(decoded)
52+
resultWikipedia := encode([]byte(inputWiki))
53+
if string(resultWikipedia) != expectedWiki {
54+
log.Fatal("Not equal wikipedia!")
55+
} else {
56+
fmt.Println("Yeah!")
57+
}
58+
if string(result) != expected {
59+
log.Fatal("Not equal!")
60+
} else {
61+
fmt.Println("Yeah!", string(decoded))
62+
}
63+
}

challenge1_2.go

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package main
2+
3+
import (
4+
"encoding/hex"
5+
"fmt"
6+
"log"
7+
8+
"github.com/robquant/cryptopals/pkg/tools"
9+
)
10+
11+
const (
12+
inputS = "1c0111001f010100061a024b53535009181c"
13+
keyS = "686974207468652062756c6c277320657965"
14+
expectedS = "746865206b696420646f6e277420706c6179"
15+
)
16+
17+
func main() {
18+
19+
input, _ := hex.DecodeString(inputS)
20+
key, _ := hex.DecodeString(keyS)
21+
xored, err := tools.Xor(input, key)
22+
if err != nil {
23+
log.Fatal(err)
24+
}
25+
if expectedS != hex.EncodeToString(xored) {
26+
fmt.Printf("Expected: %s\nGot : %s\n", expectedS, hex.EncodeToString(xored))
27+
log.Fatal("Not equal!")
28+
} else {
29+
expected, _ := hex.DecodeString(expectedS)
30+
fmt.Println("Yeah!", string(expected))
31+
}
32+
}

challenge1_3.go

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package main
2+
3+
import (
4+
"encoding/hex"
5+
"fmt"
6+
"strings"
7+
8+
"github.com/robquant/cryptopals/pkg/tools"
9+
)
10+
11+
const (
12+
secretS = "1b37373331363f78151b7f2b783431333d78397828372d363c78373e783a393b3736"
13+
)
14+
15+
func main() {
16+
17+
secretRaw, _ := hex.DecodeString(secretS)
18+
secret := []byte(strings.ToLower(string(secretRaw)))
19+
bestKey, _ := tools.GuessKey(secret)
20+
decrypted := tools.XorSingleLetter(secret, bestKey)
21+
decryptedS := strings.ToLower(string(decrypted))
22+
fmt.Printf("Key: %c -> Decrypted: %v\n", rune(bestKey), decryptedS)
23+
24+
}

challenge1_4.go

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package main
2+
3+
import (
4+
"bufio"
5+
"encoding/hex"
6+
"fmt"
7+
"os"
8+
"strings"
9+
10+
"github.com/robquant/cryptopals/pkg/tools"
11+
)
12+
13+
func main() {
14+
15+
f, _ := os.Open("input/input1_4.txt")
16+
scanner := bufio.NewScanner(f)
17+
overallBestScore := 999.0
18+
var decryptedText string
19+
for scanner.Scan() {
20+
secretRaw, _ := hex.DecodeString(scanner.Text())
21+
secret := []byte(strings.ToLower(string(secretRaw)))
22+
bestKey, bestScore := tools.GuessKey(secret)
23+
decrypted := tools.XorSingleLetter(secret, bestKey)
24+
decryptedS := string(decrypted)
25+
if bestScore < overallBestScore {
26+
overallBestScore = bestScore
27+
decryptedText = decryptedS
28+
}
29+
}
30+
fmt.Printf("Score: %.3f -> Decrypted: %v\n", overallBestScore, decryptedText)
31+
32+
}

challenge1_6.go

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
package main
2+
3+
import (
4+
"bytes"
5+
"fmt"
6+
"io/ioutil"
7+
"log"
8+
9+
"encoding/base64"
10+
11+
"github.com/robquant/cryptopals/pkg/tools"
12+
)
13+
14+
func main() {
15+
b1 := []byte("this is a test")
16+
b2 := []byte("wokka wokka!!!")
17+
fmt.Printf("Hamming distance: %d\n", tools.HammingDistance(b1, b2))
18+
input, _ := ioutil.ReadFile("input/input1_6.txt")
19+
lines := bytes.Split(input, []byte("\n"))
20+
joined := bytes.Join(lines, []byte(""))
21+
decoded, err := base64.StdEncoding.DecodeString(string(joined))
22+
if err != nil {
23+
log.Fatal("Decoding error ", err)
24+
}
25+
keyLength := tools.GuessKeyLength(decoded)
26+
transposed := tools.Transpose(decoded, keyLength)
27+
key := make([]byte, keyLength)
28+
for i := 0; i < keyLength; i++ {
29+
keyLetter, _ := tools.GuessKey(transposed[i])
30+
key[i] = keyLetter
31+
}
32+
fmt.Printf("Key: %s", string(key))
33+
fmt.Printf("%s", string(tools.RepeatedKeyXor(decoded, key)))
34+
}

challenge1_7.go

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package main
2+
3+
import (
4+
"encoding/base64"
5+
"fmt"
6+
"io/ioutil"
7+
"log"
8+
"strings"
9+
10+
"github.com/robquant/cryptopals/pkg/tools"
11+
)
12+
13+
func main() {
14+
key := []byte("YELLOW SUBMARINE")
15+
16+
inputBytes, err := ioutil.ReadFile("input/input1_7.txt")
17+
if err != nil {
18+
log.Fatal(err)
19+
}
20+
input := strings.Replace(string(inputBytes), "\n", "", 0)
21+
ciphertext, _ := base64.StdEncoding.DecodeString(input)
22+
plaintext := tools.DecryptAesECB(ciphertext, key)
23+
fmt.Printf("%s\n", string(plaintext))
24+
}

challenge1_8.go

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package main
2+
3+
import (
4+
"bytes"
5+
"fmt"
6+
"io/ioutil"
7+
8+
"github.com/robquant/cryptopals/pkg/tools"
9+
)
10+
11+
func main() {
12+
inputBytes, _ := ioutil.ReadFile("input/input1_8.txt")
13+
lines := bytes.Split(inputBytes, []byte("\n"))
14+
for i, line := range lines {
15+
if repeatedBlocks := tools.CountSameBlocks(line, 16); repeatedBlocks > 0 {
16+
fmt.Printf("Line %d has %d repetitions\n", i+1, repeatedBlocks)
17+
}
18+
}
19+
}

challenge2_1.go

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
6+
"github.com/robquant/cryptopals/pkg/tools"
7+
)
8+
9+
func main() {
10+
fmt.Printf("%v\n", tools.Pkcs7Pad([]byte("YELLOW SUBMARINE"), 20))
11+
}

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/robquant/cryptopals
2+
3+
go 1.13

0 commit comments

Comments
 (0)