summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--challenge/c1.go (renamed from c1.go)4
1 files changed, 2 insertions, 2 deletions
diff --git a/c1.go b/challenge/c1.go
index a87d05d..b7f5a4d 100644
--- a/c1.go
+++ b/challenge/c1.go
@@ -1,14 +1,14 @@
// Copyright © 2020 rsiddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
-package main
+package challenge
import (
"fmt"
"ricketyspace.net/cryptopals/enc"
)
-func main() {
+func C1() {
hex := "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
b64 := enc.HexToBase64(hex)