HomeSort by relevance Sort by last modified time
    Searched defs:pub_key (Results 1 - 12 of 12) sorted by null

  /external/boringssl/src/include/openssl/
dsa.h 396 BIGNUM *pub_key; /* y public key */ member in struct:dsa_st
dh.h 182 /* DH_check_pub_key checks the suitability of |pub_key| as a public key for the
186 OPENSSL_EXPORT int DH_check_pub_key(const DH *dh, const BIGNUM *pub_key,
252 BIGNUM *pub_key; /* g^x mod p */ member in struct:dh_st
  /external/boringssl/src/crypto/dh/
dh.c 110 BN_clear_free(dh->pub_key);
120 *out_pub_key = dh->pub_key;
260 BIGNUM *pub_key = NULL, *priv_key = NULL; local
282 if (dh->pub_key == NULL) {
283 pub_key = BN_new();
284 if (pub_key == NULL) {
288 pub_key = dh->pub_key;
319 if (!BN_mod_exp_mont_consttime(pub_key, dh->g, priv_key, dh->p, ctx,
324 dh->pub_key = pub_key
    [all...]
  /external/boringssl/src/crypto/ec/
ec_key.c 151 EC_POINT_free(r->pub_key);
176 if (src->pub_key && src->group) {
177 EC_POINT_free(dest->pub_key);
178 dest->pub_key = EC_POINT_dup(src->pub_key, src->group);
179 if (dest->pub_key == NULL) {
271 return key->pub_key;
274 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) {
275 EC_POINT_free(key->pub_key);
276 key->pub_key = EC_POINT_dup(pub_key, key->group)
411 EC_POINT *pub_key = NULL; local
    [all...]
ec_test.cc 141 const EC_POINT *pub_key = EC_KEY_get0_public_key(key.get()); local
142 ASSERT_TRUE(pub_key) << "Public key missing";
149 EC_KEY_get0_group(key.get()), pub_key, x.get(), y.get(), NULL));
internal.h 235 EC_POINT *pub_key; member in struct:ec_key_st
  /external/boringssl/src/crypto/ecdsa/
ecdsa.c 148 const EC_POINT *pub_key; local
152 (pub_key = EC_KEY_get0_public_key(eckey)) == NULL ||
206 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
  /external/boringssl/src/crypto/evp/
print.c 254 const BIGNUM *priv_key, *pub_key; local
261 pub_key = NULL;
263 pub_key = x->pub_key;
277 update_buflen(pub_key, &buf_len);
293 !bn_print(bp, "pub: ", pub_key, m, off) ||
  /external/boringssl/src/crypto/dsa/
dsa.c 118 BN_clear_free(dsa->pub_key);
136 *out_pub_key = dsa->pub_key;
436 BIGNUM *pub_key = NULL, *priv_key = NULL; local
455 pub_key = dsa->pub_key;
456 if (pub_key == NULL) {
457 pub_key = BN_new();
458 if (pub_key == NULL) {
465 !BN_mod_exp_mont_consttime(pub_key, dsa->g, priv_key, dsa->p, ctx,
471 dsa->pub_key = pub_key
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 653 publen = BN_num_bytes(dh->pub_key);
662 BN_bn2bin(dh->pub_key, wpabuf_put(pubkey, publen));
679 const BIGNUM *priv_key = NULL, *pub_key = NULL;
700 DH_get0_key(dh, &pub_key, &priv_key);
701 publen = BN_num_bytes(pub_key);
710 BN_bn2bin(pub_key, wpabuf_put(pubkey, publen));
749 dh->pub_key = BN_bin2bn(wpabuf_head(publ), wpabuf_len(publ), NULL);
750 if (dh->pub_key == NULL)
763 BIGNUM *p = NULL, *g, *priv_key = NULL, *pub_key = NULL;
778 pub_key = BN_bin2bn(wpabuf_head(publ), wpabuf_len(publ), NULL)
803 BIGNUM *pub_key; local
    [all...]
  /external/curl/lib/vtls/
openssl.c 2525 const BIGNUM *pub_key; local
2559 const BIGNUM *pub_key; local
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 267 milliseconds