tate_bilinear_pairing.it
index
/home/ds/workspace/tate_bilinear_pairing/tate_bilinear_pairing/it.py

The module is about the irreducible trinomials with the form of $x^m+x^t+2$. 
Given the value of $m$ that is the degree of the irreducible trinomial, $table[m]$ is the value of $t$. 
 
Usage: 
    $table[97]==12$ means the irreducible trinomial with the degree of 97 is $x^97 + x^12 + 2$.
    $table[10]$ is missing, which means there is no such irreducible trinomial with the degree of 10.

 
Data
        table = {2: 1, 3: 2, 4: 1, 5: 4, 6: 1, 7: 2, 8: 2, 9: 4, 11: 2, 12: 2, ...}