pike.git/
lib/
modules/
Crypto.pmod/
DH.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2014-09-30
2014-09-30 16:20:55 by Martin Nilsson <nilsson@opera.com>
8e06a314e54f9a8534ad54281290bfc1966159be (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
8.0
this_program:: -> this::
116:
protected variant void create(Gmp.mpz|int p, Gmp.mpz|int|void g, Gmp.mpz|int|void q) {
-
this
_program
::p = Gmp.mpz(p);
-
this
_program
::g = g && Gmp.mpz(g) || Gmp.mpz(2);
-
this
_program
::q = q && Gmp.mpz(q) || Gmp.mpz( [int](p-1)/2 );
+
this::p = Gmp.mpz(p);
+
this::g = g && Gmp.mpz(g) || Gmp.mpz(2);
+
this::q = q && Gmp.mpz(q) || Gmp.mpz( [int](p-1)/2 );
} protected string _sprintf(int t)