Searched refs:tmpX (Results 1 - 5 of 5) sorted by relevance

/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_exptmod.c38 mp_int tmpG, tmpX; local
51 if ((err = mp_init(&tmpX)) != MP_OKAY) {
55 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) {
56 mp_clear_multi(&tmpG, &tmpX, NULL);
61 err = mp_exptmod(&tmpG, &tmpX, P, Y);
62 mp_clear_multi(&tmpG, &tmpX, NULL);
/netbsd-current/external/bsd/wpa/dist/src/tls/
H A Dlibtommath.c606 mp_int tmpG, tmpX;
619 if ((err = mp_init(&tmpX)) != MP_OKAY) {
623 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) {
624 mp_clear_multi(&tmpG, &tmpX, NULL);
629 err = mp_exptmod(&tmpG, &tmpX, P, Y);
630 mp_clear_multi(&tmpG, &tmpX, NULL);
/netbsd-current/crypto/external/bsd/netpgp/dist/src/libbn/
H A Dbignum.c4372 mp_int tmpG, tmpX; local
4385 if ((err = mp_init(&tmpX)) != MP_OKAY) {
4389 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) {
4390 mp_clear_multi(&tmpG, &tmpX, NULL);
4395 err = mp_exptmod(&tmpG, &tmpX, P, Y);
4396 mp_clear_multi(&tmpG, &tmpX, NULL);
/netbsd-current/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dbignum.c4336 mp_int tmpG, tmpX; local
4349 if ((err = mp_init(&tmpX)) != MP_OKAY) {
4353 if ((err = absolute(X, &tmpX)) != MP_OKAY) {
4354 mp_clear_multi(&tmpG, &tmpX, NULL);
4359 err = exponent_modulo(&tmpG, &tmpX, P, Y);
4360 mp_clear_multi(&tmpG, &tmpX, NULL);
/netbsd-current/sbin/nvmectl/
H A Dbignum.c4313 mp_int tmpG, tmpX; local
4326 if ((err = mp_init(&tmpX)) != MP_OKAY) {
4330 if ((err = absolute(X, &tmpX)) != MP_OKAY) {
4331 mp_clear_multi(&tmpG, &tmpX, NULL);
4336 err = exponent_modulo(&tmpG, &tmpX, P, Y);
4337 mp_clear_multi(&tmpG, &tmpX, NULL);

Completed in 306 milliseconds