Searched refs:dsa (Results 1 – 5 of 5) sorted by relevance
/PHP-7.2/ext/openssl/tests/ |
H A D | openssl_pkey_new_error.phpt | 11 $dsa = array("dsa" => array()); 15 openssl_pkey_get_details(openssl_pkey_new($dsa));
|
H A D | openssl_pkey_new_basic.phpt | 60 $dsa = openssl_pkey_new(array( 61 'dsa' => array( 67 $details = openssl_pkey_get_details($dsa); 68 $dsa_details = $details['dsa'];
|
H A D | bug72336.phpt | 21 var_dump(openssl_pkey_new(array('dsa' => array('p' => $p, 'q' => $q, 'g' => $g))));
|
/PHP-7.2/ext/snmp/tests/ |
H A D | snmp-object-setSecurity_error.phpt | 30 var_dump($session->setSecurity('authPriv', 'MD5', $auth_pass, 'AES', 'test12345', 'context', 'dsa')… 63 Warning: SNMP::setSecurity(): Bad engine ID value 'dsa' in %s on line %d
|
/PHP-7.2/ext/openssl/ |
H A D | openssl.c | 4066 DSA *dsa = EVP_PKEY_get0_DSA(pkey); in php_openssl_is_private_key() local 4067 if (dsa != NULL) { in php_openssl_is_private_key() 4070 DSA_get0_pqg(dsa, &p, &q, &g); in php_openssl_is_private_key() 4196 if (!DSA_generate_key(dsa)) { in php_openssl_pkey_init_dsa() 4327 DSA *dsa = DSA_new(); in PHP_FUNCTION() local 4328 if (dsa) { in PHP_FUNCTION() 4330 if (EVP_PKEY_assign_DSA(pkey, dsa)) { in PHP_FUNCTION() 4336 DSA_free(dsa); in PHP_FUNCTION() 4799 DSA *dsa = EVP_PKEY_get0_DSA(pkey); in PHP_FUNCTION() local 4802 if (dsa != NULL) { in PHP_FUNCTION() [all …]
|
Completed in 20 milliseconds