Searched refs:g_y (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/ext/openssl/tests/ |
H A D | ecc_custom_params.phpt | 35 $g_y = hex2bin('02BB3A02D4AAADACAE24817A4CA3A1B014B5270432DB27D2'); 45 'g_y' => $g_y, 81 // EC - missing "generator" or "g_x" and "g_y" param 112 Warning: openssl_pkey_new(): Missing params: generator or g_x and g_y in %s on line %d
|
H A D | ecc_sm2.phpt | 44 $g_y = hex2bin('BC3736A2F4F6779C59BDCEE36B692153D0A9877CC62A474002DF32E52139F0A0'); 54 'g_y' => $g_y
|
/PHP-8.3/ext/openssl/ |
H A D | openssl.c | 4299 BIGNUM *p = NULL, *a = NULL, *b = NULL, *order = NULL, *g_x = NULL, *g_y = NULL , *cofactor = NULL; in php_openssl_pkey_init_legacy_ec() local 4351 OPENSSL_PKEY_SET_BN(data, g_y); in php_openssl_pkey_init_legacy_ec() 4353 if (!g_x || !g_y) { in php_openssl_pkey_init_legacy_ec() 4359 if (!EC_POINT_set_affine_coordinates_GFp(group, point_g, g_x, g_y, bctx)) { in php_openssl_pkey_init_legacy_ec() 4434 BN_free(g_y); in php_openssl_pkey_init_legacy_ec() 4446 BIGNUM *p = NULL, *a = NULL, *b = NULL, *order = NULL, *g_x = NULL, *g_y = NULL, *cofactor = NULL; in php_openssl_pkey_init_ec() local 4515 OPENSSL_PKEY_SET_BN(data, g_y); in php_openssl_pkey_init_ec() 4517 if (!g_x || !g_y) { in php_openssl_pkey_init_ec() 4523 if (!EC_POINT_set_affine_coordinates(group, point_g, g_x, g_y, bctx)) { in php_openssl_pkey_init_ec() 4630 BN_free(g_y); in php_openssl_pkey_init_ec()
|
Completed in 23 milliseconds