summaryrefslogtreecommitdiffstats
path: root/challenge/c1.go
diff options
context:
space:
mode:
Diffstat (limited to 'challenge/c1.go')
-rw-r--r--challenge/c1.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/challenge/c1.go b/challenge/c1.go
new file mode 100644
index 0000000..b7f5a4d
--- /dev/null
+++ b/challenge/c1.go
@@ -0,0 +1,16 @@
+// Copyright © 2020 rsiddharth <s@ricketyspace.net>
+// SPDX-License-Identifier: ISC
+
+package challenge
+
+import (
+ "fmt"
+ "ricketyspace.net/cryptopals/enc"
+)
+
+func C1() {
+ hex := "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
+ b64 := enc.HexToBase64(hex)
+
+ fmt.Printf("b64(0x%v) = %v\n", hex, b64)
+}