summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c1.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/c1.go b/c1.go
new file mode 100644
index 0000000..5248d59
--- /dev/null
+++ b/c1.go
@@ -0,0 +1,13 @@
+package main
+
+import (
+ "fmt"
+ "ricketyspace.net/cryptopals/enc"
+)
+
+func main() {
+ hex := "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
+ b64 := enc.HexToBase64(hex)
+
+ fmt.Printf("b64(0x%v) = %v\n", hex, b64)
+}