
Clever way to reverse 32 bytes
simple method -> 32 iterations
clever method -> 5 iterations
# input
A B C D E F G H
# swap 1 byte
B A D C F E H G
# swap 2 bytes
D C B A H G F E
# swap 4 bytes
H G F E D C B A
Code
#L23-L44" target="_blank" rel="nofollow noopener">github.com/risc0/risc0-et…

HT





























