Searched refs:dh (Results 1 – 18 of 18) sorted by relevance
/PHP-7.0/ext/openssl/tests/ |
H A D | bug55259.phpt | 13 $dh = openssl_pkey_new(array( 'dh'=> array( 'p' => $phex, 'g' => '2' ))); 14 var_dump($dh); 15 $dh = openssl_pkey_new(array( 'dh'=> array( 'p' => hex2bin($phex), 'g' => '2' ))); 16 $details = openssl_pkey_get_details($dh); 17 var_dump(bin2hex($details['dh']['p'])); 18 var_dump($details['dh']['g']); 19 var_dump(strlen($details['dh']['pub_key']) > 0); 20 var_dump(strlen($details['dh']['priv_key']) > 0);
|
H A D | openssl_pkey_new_error.phpt | 12 $dh = array("dh" => array()); 16 openssl_pkey_get_details(openssl_pkey_new($dh));
|
H A D | openssl_pkey_new_basic.phpt | 82 $dh = openssl_pkey_new(array( 83 'dh'=> array('p' => hex2bin($phex), 'g' => '2')) 85 $details = openssl_pkey_get_details($dh); 86 $dh_details = $details['dh'];
|
H A D | openssl_csr_get_public_key_basic.phpt | 15 $dh = openssl_pkey_new(array( 16 'dh'=> array('p' => hex2bin($phex), 'g' => '2'))
|
H A D | openssl_csr_export_to_file_basic.phpt | 15 $dh = openssl_pkey_new(array( 16 'dh'=> array('p' => hex2bin($phex), 'g' => '2')) 40 var_dump(openssl_csr_export_to_file($dh, $csrfile));
|
H A D | openssl_csr_get_subject_basic.phpt | 15 $dh = openssl_pkey_new(array( 16 'dh'=> array('p' => hex2bin($phex), 'g' => '2'))
|
/PHP-7.0/ext/standard/tests/dir/ |
H A D | opendir_variation4.phpt | 31 clean_dh($dh); 36 clean_dh($dh); 40 clean_dh($dh); 45 clean_dh($dh); 49 clean_dh($dh); 54 clean_dh($dh); 59 clean_dh($dh); 65 function clean_dh($dh){ 66 if (is_resource($dh)) { 67 closedir($dh); [all …]
|
H A D | closedir_variation2.phpt | 21 $dh = opendir($directory); 24 var_dump(closedir($dh)); 26 var_dump($dh); 29 var_dump(closedir($dh)); 31 var_dump($dh);
|
H A D | readdir_basic.phpt | 25 var_dump($dh = opendir($path)); 27 while( FALSE !== ($file = readdir($dh)) ) { 36 var_dump($dh = opendir($path)); 47 closedir($dh);
|
H A D | opendir_variation7.phpt | 70 var_dump($dh = opendir($dir_path)); 72 if (is_resource($dh)) { 73 closedir($dh);
|
H A D | readdir_variation5.phpt | 67 var_dump($dh = opendir($dir_path)); 70 var_dump(readdir($dh)); 72 closedir($dh);
|
H A D | opendir_variation1.phpt | 104 var_dump( $dh = opendir($input) ); 105 if ($dh) { 106 closedir($dh);
|
H A D | opendir_variation2.phpt | 97 var_dump($dh = opendir($path, $input) );# 98 if ($dh) { 99 closedir($dh);
|
/PHP-7.0/ext/standard/tests/file/ |
H A D | fseek_dir_basic.phpt | 14 var_dump($dh = opendir($path)); 16 while( FALSE !== ($files[] = readdir($dh)) ) {} 22 var_dump(fseek($dh, 20)); 25 while( FALSE !== ($files[] = readdir($dh)) ) {} 31 var_dump(fseek($dh, 20, SEEK_END)); 34 while( FALSE !== ($files[] = readdir($dh)) ) {} 39 closedir($dh);
|
H A D | bug24482.phpt | 19 $dh = opendir("."); 20 while (is_string($file = readdir($dh))) { 25 closedir($dh);
|
/PHP-7.0/ext/openssl/ |
H A D | openssl.c | 599 *p = dh->p; in DH_get0_pqg() 600 *q = dh->q; in DH_get0_pqg() 601 *g = dh->g; in DH_get0_pqg() 606 dh->p = p; in DH_set0_pqg() 607 dh->q = q; in DH_set0_pqg() 608 dh->g = g; in DH_set0_pqg() 621 dh->pub_key = pub_key; in DH_set0_key() 4064 if (dh) { in PHP_FUNCTION() 4071 DH_free(dh); in PHP_FUNCTION() 5903 DH *dh; in PHP_FUNCTION() local [all …]
|
H A D | xp_ssl.c | 1184 DH *dh; in set_server_dh_param() local 1207 dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL); in set_server_dh_param() 1210 if (dh == NULL) { in set_server_dh_param() 1215 if (SSL_CTX_set_tmp_dh(ctx, dh) < 0) { in set_server_dh_param() 1217 DH_free(dh); in set_server_dh_param() 1221 DH_free(dh); in set_server_dh_param()
|
/PHP-7.0/ext/hash/tests/ |
H A D | fnv1a64.phpt | 102 array( 'X0rpD~5iwL|*dh/#KU|', '17b538fc3a531c98' ), 162 array( '4a4YSjy@NC+,V,Y#jE#dh/f~W?8m?}!', '628239fa1e9fbf4c' ),
|
Completed in 49 milliseconds