Searched refs:xtmp (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/crypto/openssl/crypto/evp/
H A Dpbe_scrypt.c110 uint32_t xtmp = X[i]; local
111 *pB++ = xtmp & 0xff;
112 *pB++ = (xtmp >> 8) & 0xff;
113 *pB++ = (xtmp >> 16) & 0xff;
114 *pB++ = (xtmp >> 24) & 0xff;
/freebsd-12-stable/crypto/openssl/crypto/srp/
H A Dsrp_lib.c180 BIGNUM *xtmp = NULL; local
190 (xtmp = BN_new()) == NULL)
193 BN_with_flags(xtmp, x, BN_FLG_CONSTTIME);
195 if (!BN_mod_exp(tmp, g, xtmp, N, bn_ctx))
203 if (!BN_mul(tmp3, u, xtmp, bn_ctx))
215 BN_free(xtmp);
/freebsd-12-stable/crypto/openssl/crypto/x509/
H A Dx509_vfy.c129 X509 *xtmp = NULL; local
137 xtmp = sk_X509_value(certs, i);
138 if (!X509_cmp(xtmp, x))
140 xtmp = NULL;
142 if (xtmp != NULL && !X509_up_ref(xtmp))
143 xtmp = NULL;
145 return xtmp;
3022 X509 *xtmp = NULL; local
3060 ok = (depth < num) ? 0 : get_issuer(&xtmp, ct
[all...]
/freebsd-12-stable/crypto/openssl/ssl/
H A Dt1_lib.c2381 X509 *xtmp = sk_X509_value(chain, i); local
2382 if (ssl_check_ca_name(ca_dn, xtmp)) {

Completed in 122 milliseconds