summaryrefslogtreecommitdiffstats
path: root/challenge/c02.go
diff options
context:
space:
mode:
Diffstat (limited to 'challenge/c02.go')
-rw-r--r--challenge/c02.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge/c02.go b/challenge/c02.go
index d8f03c9..eb45a4f 100644
--- a/challenge/c02.go
+++ b/challenge/c02.go
@@ -5,13 +5,13 @@ package challenge
import (
"fmt"
- "ricketyspace.net/cryptopals/enc"
+ "ricketyspace.net/cryptopals/lib"
)
func C2() {
a := "1c0111001f010100061a024b53535009181c"
b := "686974207468652062756c6c277320657965"
- c := enc.FixedXOR(a, b)
+ c := lib.FixedXOR(a, b)
fmt.Printf("XOR(%v ^ %v) = %v\n", a, b, c)
}