summaryrefslogtreecommitdiffstats
path: root/challenge/c21.go
blob: 3cc3dd3fd30cb147c27deb941ec8d05698a202ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright © 2021 rsiddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC

package challenge

import (
	"fmt"

	"ricketyspace.net/cryptopals/lib"
)

func C21() {
	for {
		fmt.Printf("%v\n", lib.MTExtract())
	}
}