python中的Crypto在CTF中的应用

Crypto模块是Python中一个很成熟的现代密码学模块,无论是做题/出题,还是里面的一些小工具都很好用。
安装:
pip(3) install pycrypto

常用工具

  • 异或两个bytes
    1
    2
    from Crypto.Util.strxor import strxor
    strxor(b'abc', b'def')
  • 给一个bytes的每一位异或一个数字
    1
    2
    from Crypto.Util.strxor import strxor_c
    strxor_c(b'abc', ord('a'))
  • 最大公约数
    1
    2
    from Crypto.Util.number import GCD
    GCD(36,12)
  • 模逆
    1
    2
    from Crypto.Util.number import inverse
    inverse(3,5)
  • 取随机质数
    1
    2
    from Crypto.Util.number import getPrime
    getPrime(512)
  • bytes和数字互相转化
    1
    2
    3
    from Crypto.Util.number import bytes_to_long, long_to_bytes
    bytes_to_long(b'felinae')
    long_to_bytes(28821963924201829)
知识共享许可协议
本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。