/PHP-8.3/ext/dom/tests/ |
H A D | gh8996.phpt | 27 $dom->loadXML('<tag>value</tag>'); 51 $dom->loadXML('<tag>value</tag>'); 74 $dom->loadXML('<tag>value</tag>'); 85 <tag>value</tag> 90 <tag>value</tag> 96 <tag>value</tag> 101 <tag>value</tag> 107 <tag>value</tag> 114 <tag>value</tag> 120 <tag>value</tag>
|
H A D | DOMDocument_loadXML_error1.phpt | 8 This test verifies the method detects an opening and ending tag mismatch 24 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li… 28 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
|
H A D | DOMDocument_load_error1.phpt | 8 This test verifies the method detects an opening and ending tag mismatch 24 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li… 28 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
|
H A D | bug74004.phpt | 9 $doc->loadHTML("<tag-throw></tag-throw>",LIBXML_NOERROR);
|
/PHP-8.3/ext/openssl/tests/ |
H A D | cipher_tests.inc | 8 'tag' => '1fc64fbfaccd', 17 'tag' => '484392fbc1b09951', 31 'tag' => '2024931d73bca480c24a24ece6b6c2bf', 42 'tag' => '58e2fccefa7e3061367f1d57a4e7455a', 49 'tag' => 'ab6e47d42cec13bdf53a67b21257bddf', 56 'tag' => '4d5c2af327cd64a62cf35abd2ba6fab4', 70 'tag' => '5bc94fbc3221a5db94fae95ae7121a47', 84 'tag' => '3612d2e79e3b0785561be14aaca2fccb', 101 'tag' => '619cc5aefffe0bfa462af43c1699d050', 119 'tag' => '785407BFFFC8AD9EDCC5520AC9111EE6', [all …]
|
H A D | openssl_encrypt_chacha20_poly1305.phpt | 19 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 21 var_dump($test['tag'] === $tag); 25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 27 // Failing to retrieve tag (max is 16 bytes) 28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12), $tag, '', 20)); 30 // Failing when no tag supplied 44 Warning: openssl_encrypt(): Retrieving verification tag failed in %s on line %d 47 Warning: openssl_encrypt(): A tag should be provided when using AEAD mode in %s on line %d
|
H A D | openssl_encrypt_ccm.phpt | 20 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 22 var_dump($test['tag'] === $tag); 27 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 29 // Test setting different IV length and tag length 30 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 10), $tag, '', 14)); 31 var_dump(strlen($tag)); 33 // Test setting invalid tag length 34 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 16), $tag, '', 1024));
|
H A D | openssl_encrypt_gcm.phpt | 19 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 21 var_dump($test['tag'] === $tag); 25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 27 // Failing to retrieve tag (max is 16 bytes) 28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 32), $tag, '', 20)); 30 // Failing when no tag supplied 56 Warning: openssl_encrypt(): Retrieving verification tag failed in %s on line %d 59 Warning: openssl_encrypt(): A tag should be provided when using AEAD mode in %s on line %d
|
H A D | openssl_encrypt_ocb.phpt | 19 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 21 var_dump($test['tag'] === $tag); 25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 27 // Failing to retrieve tag (must be at most 16 bytes) 28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12), $tag, '', 20)); 30 // Failing when no tag supplied 56 Warning: openssl_encrypt(): Setting tag length for AEAD cipher failed in %s on line %d 59 Warning: openssl_encrypt(): A tag should be provided when using AEAD mode in %s on line %d
|
H A D | openssl_decrypt_ocb.phpt | 19 $test['iv'], $test['tag'], $test['aad']); 25 '', $test['tag'], $test['aad'])); 29 str_repeat('x', 32), $test['tag'], $test['aad'])); 33 $test['iv'], $test['tag'])); 35 // failed because wrong tag
|
H A D | openssl_decrypt_basic.phpt | 28 …enssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv, tag: ''); 30 …ssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv, tag: null); 42 // It's okay to pass $tag for a non-authenticated cipher. 44 openssl_encrypt($data, $method, $password, 0, $iv, $tag); 45 var_dump($tag);
|
H A D | openssl_decrypt_gcm.phpt | 19 $test['iv'], $test['tag'], $test['aad']); 25 '', $test['tag'], $test['aad'])); 28 $test['iv'], $test['tag'])); 29 // failed because wrong tag
|
H A D | openssl_decrypt_ccm.phpt | 20 $test['iv'], $test['tag'], $test['aad']); 27 '', $test['tag'], $test['aad'])); 30 $test['iv'], $test['tag'])); 31 // failed because wrong tag
|
/PHP-8.3/ext/xml/tests/ |
H A D | xml_parse_into_struct_variation.phpt | 53 [tag] => MAIN 60 [tag] => PARA 67 [tag] => NOTE 75 [tag] => PARA 82 [tag] => PARA 89 [tag] => NOTE 97 [tag] => PARA 104 [tag] => MAIN
|
H A D | xml007.phpt | 14 function startHandler($parser,$tag,$attr) 16 var_dump($tag,$attr); 19 function endHandler($parser,$tag) 21 var_dump($tag); 40 ["tag"]=>
|
H A D | bug50576.phpt | 64 [tag] => LISTOFAWARDS 78 [tag] => COUNT 87 [tag] => TOTAL 95 [tag] => COUNT 104 [tag] => COUNT 111 [tag] => LISTOFAWARDS 120 [tag] => LISTOFAWARDS
|
H A D | xml011.phpt | 37 [tag] => TEXT 45 [tag] => B 52 [tag] => TEXT 60 [tag] => TEXT
|
/PHP-8.3/ext/enchant/tests/ |
H A D | dict_quick_check.phpt | 13 $tag = 'en_US'; 15 if (!enchant_broker_dict_exists($r, $tag)) 16 die('skip, no dictionary for ' . $tag . ' tag'); 21 $tag = 'en_US'; 24 $d = enchant_broker_request_dict($r, $tag);
|
/PHP-8.3/ext/exif/tests/ |
H A D | bug76557.phpt | 11 Warning: exif_read_data(bug76557.jpg): Process tag(x010F=Make): Illegal format code 0x3030, suppose… 13 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 15 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 17 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 19 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 21 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 23 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 25 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 27 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 29 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,…
|
H A D | bug72094.phpt | 14 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 16 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 18 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 20 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 22 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 24 Warning: exif_read_data(bug72094_1.jpg): Process tag(x8298=Copyright): Illegal format code 0x3030, … 38 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 40 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 42 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 44 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… [all …]
|
H A D | bug54002.phpt | 2 Bug #54002 (crash on crafted tag) 14 Warning: exif_read_data(bug54002_1.jpg): Process tag(x0205=UndefinedTag): Illegal byte_count in %sb… 16 Warning: exif_read_data(bug54002_2.jpg): Process tag(x0205=UndefinedTag): Illegal byte_count in %sb…
|
/PHP-8.3/ext/fileinfo/libmagic/ |
H A D | der.c | 153 uint32_t tag; in gettag() local 158 tag = c[(*p)++] & 0x1f; in gettag() 160 if (tag != 0x1f) in gettag() 161 return tag; in gettag() 167 tag = tag * 128 + c[(*p)++] - 0x80; in gettag() 171 return tag; in gettag() 229 if (tag < DER_TAG_LAST) in der_tag() 242 switch (tag) { in der_data() 310 uint32_t tag, tlen; in der_cmp() local 316 if (tag == DER_BAD) { in der_cmp() [all …]
|
/PHP-8.3/ext/standard/tests/image/ |
H A D | iptcembed_002.phpt | 62 foreach ($tags as $tag => $string) { $rec=$tag[0]; $tag = substr($tag, 2); $iptc .= iptc_make_tag($… 89 foreach ($tags as $tag => $string) { 90 #check if tag exists 91 if (!isset($iptc_data_from_created_image[$tag])) { 92 echo "error iptc tag $tag not found".PHP_EOL; 96 if ($iptc_data_from_created_image[$tag][0]!=$string) { 97 … echo "error tag $tag : bad value ($string != ".$iptc_data_from_created_image[$tag][0].")".PHP_EOL;
|
/PHP-8.3/tests/lang/ |
H A D | short_tags.001.phpt | 7 echo "Used a short tag\n"; 11 Used a short tag
|
H A D | short_tags.002.phpt | 7 echo "Used a short tag\n"; 12 echo "Used a short tag\n";
|