GF(2)有限域中的Python乘法逆

时间:2013-06-29 18:08:00

标签: python python-2.7 polynomial-math finite-field galois-field

这两个函数执行扩展欧几里德算法,然后找到乘法逆。这个顺序似乎是正确的,但它并没有按照我对悉尼大学http://magma.maths.usyd.edu.au/calc/的这个工具的预期而回来,因为这是在GF(2)有限域中完成的,我想我错过了一些从基数10转换为此字段的关键步骤。

这已经在基数10上进行了测试和处理,但是在这里可能无法获得具有二进制系数的多项式。所以我的问题是我错误地应用于这个算法的Python的哪些部分,例如// floor,它可能无法承载基本10中的函数能够在GF(2)中执行此操作。

上面的工具可以像这样测试:

R<x>:=PolynomialRing(GF(2));
p:=x^13+x+1; q:=x^12+x;
g,r,s:=XGCD(p,q);

g eq r*p+s*q;

g,r,s;

功能:

def extendedEuclideanGF2(self,a,b): # extended euclidean. a,b are values 10110011... in integer form
    inita,initb=a,b;  x,prevx=0,1;  y,prevy = 1,0
    while b != 0:
        q = int("{0:b}".format(a//b),2)
        a,b = b,int("{0:b}".format(a%b),2);
        x,prevx = (int("{0:b}".format(prevx-q*x)), int("{0:b}".format(x,2)));  y,prevy=(prevy-q*y, y)
    print("Euclidean  %d * %d + %d * %d = %d" % (inita,prevx,initb,prevy,a))
    return a,prevx,prevy  # returns gcd of (a,b), and factors s and t

def modular_inverse(self,a,mod): # a,mod are integer values of 101010111... form
    a,mod = prepBinary(a,mod)
    bitsa = int("{0:b}".format(a),2); bitsb = int("{0:b}".format(mod),2)
    #return bitsa,bitsb,type(bitsa),type(bitsb),a,mod,type(a),type(mod)
    gcd,s,t = extendedEuclideanGF2(a,mod); s = int("{0:b}".format(s))
    initmi = s%mod; mi = int("{0:b}".format(initmi))
    print ("M Inverse %d * %d mod %d = 1"%(a,initmi,mod))
    if gcd !=1: return mi,False
    return mi   # returns modular inverse of a,mod

我一直在测试这样的多项式,但当然是二进制形式:

p = "x**13 + x**1 + x**0" 
q = "x**12 + x**1"

1 个答案:

答案 0 :(得分:3)

使用base-10测试时该功能正常工作,因为您的所有转化int("{0:b}".format(x))对x都没有影响:

37 == int("{0:b}".format(37), 2)  # >>> True

python中的数字对象都是base-10。将数字转换为二进制字符串,然后返回整数无效。以下是您的函数的替代版本,它应该在ab上作为基数为10的整数并以二进制形式返回。您可以移除bin()函数以返回base-10中的数字,或使用lambda x: int("%d".format(x))之类的内容将ab从二进制转换为十进制的第一行功能。

def extendedEuclideanGF2(a, b): # extended euclidean. a,b are values 10110011... in         integer form
    inita, initb = a, b   # if a and b are given as base-10 ints
    x, prevx = 0, 1
    y, prevy = 1, 0
    while b != 0:
        q = a//b
        a, b = b, a%b
        x, prevx = prevx - q*x, x
        y, prevy = prevy - q*y, y
    print("Euclidean  %d * %d + %d * %d = %d" % (inita, prevx, initb, prevy, a))
    i2b = lambda n: int("{0:b}".format(n))  # convert decimal number to a binary value in a decimal number
    return i2b(a), i2b(prevx), i2b(prevy)  # returns gcd of (a,b), and factors s and t

所有这一切,不要在这样的函数中使用lambdas - 我建议编写你的程序以避免完全使用二进制文件,你可以通过只在你的程序的接口转换为/到二进制来完成数据