D | sae.c | 638 struct crypto_bignum *u2, *t1, *t2, *z, *t, *zero, *one, *two, *three, in sswu() local 664 two = crypto_bignum_init_uint(2); in sswu() 671 if (!u2 || !t1 || !t2 || !z || !t || !zero || !one || !two || !three || in sswu() 698 if (crypto_bignum_sub(prime, two, t2) < 0 || in sswu() 821 crypto_bignum_deinit(two, 0); in sswu() 979 struct crypto_bignum *one = NULL, *two = NULL, *bn = NULL, *tmp = NULL, in sae_derive_pt_ffc() local 1012 two = crypto_bignum_init_uint(2); in sae_derive_pt_ffc() 1014 if (!bn || !one || !two || !tmp || in sae_derive_pt_ffc() 1015 crypto_bignum_sub(prime, two, tmp) < 0 || in sae_derive_pt_ffc() 1017 crypto_bignum_add(bn, two, bn) < 0 || in sae_derive_pt_ffc() [all …]
|