summaryrefslogtreecommitdiffstats
path: root/challenge/c01.go
diff options
context:
space:
mode:
Diffstat (limited to 'challenge/c01.go')
-rw-r--r--challenge/c01.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge/c01.go b/challenge/c01.go
index b7f5a4d..656a859 100644
--- a/challenge/c01.go
+++ b/challenge/c01.go
@@ -5,12 +5,12 @@ package challenge
import (
"fmt"
- "ricketyspace.net/cryptopals/enc"
+ "ricketyspace.net/cryptopals/lib"
)
func C1() {
hex := "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
- b64 := enc.HexToBase64(hex)
+ b64 := lib.HexToBase64(hex)
fmt.Printf("b64(0x%v) = %v\n", hex, b64)
}