代码def extGCD(a, b): if b == 0: return 1, 0, a x, y, q = extGCD(b, a % b) x, y =... Python实现椭圆曲线基础运算 2年前 (2023-04-16) 526 0 编程>小玩意