summaryrefslogtreecommitdiffstats
path: root/challenge/c09.go
blob: 41bd7f5d2c18c7d6420dd25db5ac5b513cb569ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright © 2020 rsiddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC

package challenge

import (
	"fmt"

	"ricketyspace.net/cryptopals/lib"
)

func C9() {
	in := lib.StrToBytes("YELLOW SUBMARINE")
	in_padded := lib.Pkcs7Padding(in, 20)
	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 4 4 4 4]