mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
721 B
40 lines
721 B
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
|
||
5 years ago
|
student "student"
|
||
|
|
||
|
"lib"
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
func swapBits(n byte) byte {
|
||
|
return (n >> 4) | (n << 4)
|
||
|
}
|
||
|
|
||
5 years ago
|
func challengeBytes(fn1, fn2 interface{}, args ...interface{}) {
|
||
5 years ago
|
st1 := lib.Monitor(fn1, args)
|
||
|
st2 := lib.Monitor(fn2, args)
|
||
5 years ago
|
if !reflect.DeepEqual(st1.Results, st2.Results) {
|
||
5 years ago
|
lib.Fatalf("%s(%08b) == %08b instead of %08b\n",
|
||
5 years ago
|
"SwapBits",
|
||
5 years ago
|
args[0].(byte),
|
||
|
st1.Results[0].(byte),
|
||
|
st2.Results[0].(byte),
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
args := []byte{0x24, 0x14, 0x11, 0x22, 0xd2, 0x15, 0xff, 0x0, 0x35, 0x58, 0x43}
|
||
|
|
||
|
for i := 0; i < 10; i++ {
|
||
5 years ago
|
n := lib.RandIntBetween(0, 255)
|
||
5 years ago
|
args = append(args, byte(n))
|
||
|
}
|
||
|
|
||
|
for _, v := range args {
|
||
5 years ago
|
challengeBytes(student.SwapBits, swapBits, v)
|
||
5 years ago
|
}
|
||
|
}
|