様々な行列の作り方

TokyoWesterns CTF 6th 2020 | XOR and shift cipher

https://furutsuki.hatenablog.com/entry/2020/09/21/092947 xorshift 行列累乗 様々な行列の作り方 #!/usr/bin/python3 s = [] p = 0 def init(): global s,p s = [i for i in range(0,64)] p = 0 return def randgen(): global s,p a = 3 b = 13 c = 37 s0…