summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--challenge/c09.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/challenge/c09.go b/challenge/c09.go
index aaf1664..9067e68 100644
--- a/challenge/c09.go
+++ b/challenge/c09.go
@@ -13,3 +13,9 @@ func C9() {
in_padded := lib.Pkcs7Padding(in, 24)
fmt.Printf("IN: %v\nOUT: %v\n", in, in_padded)
}
+
+// Output:
+//
+// IN: [89 69 76 76 79 87 32 83 85 66 77 65 82 73 78 69]
+// OUT: [89 69 76 76 79 87 32 83 85 66 77 65 82 73 78 69 8 8 8 8 8 8 8 8]
+