HomeSort by: relevance | last modified time | path
    Searched defs:pub_point (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/ec/
ec_backend.c 404 EC_POINT *pub_point = NULL; local
422 || (pub_point = EC_POINT_new(ecg)) == NULL
423 || !EC_POINT_oct2point(ecg, pub_point, pub_key, pub_key_len, ctx))
483 if (pub_point != NULL
484 && !EC_KEY_set_public_key(ec, pub_point))
493 EC_POINT_free(pub_point);
ec_ameth.c 482 const EC_POINT *pub_point = NULL; local
511 pub_point = EC_KEY_get0_public_key(eckey);
513 if (pub_point != NULL) {
514 /* convert pub_point to a octet string according to the SECG standard */
517 if ((pub_key_buflen = EC_POINT_point2buf(ecg, pub_point,
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
ec_backend.c 404 EC_POINT *pub_point = NULL; local
424 || (pub_point = EC_POINT_new(ecg)) == NULL
425 || !EC_POINT_oct2point(ecg, pub_point, pub_key, pub_key_len, ctx))
485 if (pub_point != NULL
486 && !EC_KEY_set_public_key(ec, pub_point))
495 EC_POINT_free(pub_point);
ec_ameth.c 483 const EC_POINT *pub_point = NULL; local
512 pub_point = EC_KEY_get0_public_key(eckey);
514 if (pub_point != NULL) {
515 /* convert pub_point to a octet string according to the SECG standard */
518 if ((pub_key_buflen = EC_POINT_point2buf(ecg, pub_point,
  /src/crypto/external/apache2/openssl/dist/providers/implementations/keymgmt/
ec_kmgmt.c 119 const EC_POINT *pub_point = NULL; local
130 pub_point = EC_KEY_get0_public_key(eckey);
132 if (pub_point != NULL) {
150 /* convert pub_point to a octet string according to the SECG standard */
153 if ((pub_key_len = EC_POINT_point2buf(ecg, pub_point,
174 if (!EC_POINT_get_affine_coordinates(ecg, pub_point, x, y, bnctx))
  /src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/
ec_kmgmt.c 117 const EC_POINT *pub_point = NULL; local
128 pub_point = EC_KEY_get0_public_key(eckey);
130 if (pub_point != NULL) {
149 /* convert pub_point to a octet string according to the SECG standard */
152 if ((pub_key_len = EC_POINT_point2buf(ecg, pub_point,
172 if (!EC_POINT_get_affine_coordinates(ecg, pub_point, x, y, bnctx))

Completed in 55 milliseconds