File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 55
55
from sage .rings .integer import Integer
56
56
from sage .rings .integer_ring import ZZ
57
57
from sage .rings .finite_rings .integer_mod_ring import IntegerModRing
58
- from sage .arith .misc import inverse_mod , XGCD as xgcd
58
+ from sage .arith .misc import inverse_mod , xgcd
59
59
from random import randint
60
60
from sage .matrix .matrix_space import MatrixSpace
61
61
Original file line number Diff line number Diff line change 30
30
31
31
from operator import xor
32
32
33
- from sage .arith .misc import gcd , power_mod , XGCD as xgcd
33
+ from sage .arith .misc import gcd , power_mod , xgcd
34
34
from sage .crypto .cryptosystem import PublicKeyCryptosystem
35
35
from sage .crypto .util import is_blum_prime , least_significant_bits , random_blum_prime
36
36
from sage .functions .log import log
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Helper code for ternary quadratic forms
12
12
# http://www.gnu.org/licenses/
13
13
# *****************************************************************************
14
14
15
- from sage.arith.misc import gcd, inverse_mod, XGCD as xgcd
15
+ from sage.arith.misc import gcd, inverse_mod, xgcd
16
16
from sage.matrix.constructor import matrix, identity_matrix, diagonal_matrix
17
17
from sage.misc.prandom import randint
18
18
from sage.modules.free_module_element import vector
You can’t perform that action at this time.
0 commit comments