Home
last modified time | relevance | path

Searched refs:dsa (Results 1 – 5 of 5) sorted by relevance

/PHP-7.1/ext/openssl/tests/
H A Dopenssl_pkey_new_error.phpt11 $dsa = array("dsa" => array());
15 openssl_pkey_get_details(openssl_pkey_new($dsa));
H A Dopenssl_pkey_new_basic.phpt60 $dsa = openssl_pkey_new(array(
61 'dsa' => array(
67 $details = openssl_pkey_get_details($dsa);
68 $dsa_details = $details['dsa'];
H A Dbug72336.phpt21 var_dump(openssl_pkey_new(array('dsa' => array('p' => $p, 'q' => $q, 'g' => $g))));
/PHP-7.1/ext/snmp/tests/
H A Dsnmp-object-setSecurity_error.phpt30 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.1/ext/openssl/
H A Dopenssl.c4026 DSA *dsa = EVP_PKEY_get0_DSA(pkey); in php_openssl_is_private_key() local
4027 if (dsa != NULL) { in php_openssl_is_private_key()
4030 DSA_get0_pqg(dsa, &p, &q, &g); in php_openssl_is_private_key()
4156 if (!DSA_generate_key(dsa)) { in php_openssl_pkey_init_dsa()
4287 DSA *dsa = DSA_new(); in PHP_FUNCTION() local
4288 if (dsa) { in PHP_FUNCTION()
4290 if (EVP_PKEY_assign_DSA(pkey, dsa)) { in PHP_FUNCTION()
4296 DSA_free(dsa); in PHP_FUNCTION()
4747 DSA *dsa = EVP_PKEY_get0_DSA(pkey); in PHP_FUNCTION() local
4750 if (dsa != NULL) { in PHP_FUNCTION()
[all …]

Completed in 25 milliseconds