ipsec.py 文件源码

python
阅读 28 收藏 0 点赞 0 评论 0

项目:scapy-bpf 作者: guedou 项目源码 文件源码
def gcd(a, b):
            """Fallback implementation when Crypto is missing, and fractions does
            not exist (Python 2.5)

            """
            if b > a:
                a, b = b, a
            c = a % b
            return b if c == 0 else gcd(c, b)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号