Searched refs:setEncryptionName (Results 1 – 7 of 7) sorted by relevance
/PHP-8.1/ext/zip/examples/ |
H A D | encryption.php | 16 $zip->setEncryptionName($file, ZipArchive::EM_AES_256, $pass); 25 $zip->setEncryptionName($file, ZipArchive::EM_AES_256);
|
/PHP-8.1/ext/zip/tests/ |
H A D | bug80833.phpt | 6 if (!method_exists('ZipArchive', 'setEncryptionName')) die('skip encryption not supported'); 14 $create_zip->setEncryptionName("test.txt", ZipArchive::EM_AES_256, "first_password"); 16 $create_zip->setEncryptionName("test2.txt", ZipArchive::EM_AES_256, "second_password");
|
H A D | oo_encryption.phpt | 7 if (!method_exists('ZipArchive', 'setEncryptionName')) die('skip encryption not supported'); 22 var_dump($zip->setEncryptionName('bar.txt', 9999, $pass)); // Fails 23 var_dump($zip->setEncryptionName('bar.txt', ZipArchive::EM_AES_256, $pass));
|
H A D | oo_addglob2.phpt | 7 if (!method_exists('ZipArchive', 'setEncryptionName')) die('skip encrytion not supported');
|
/PHP-8.1/ext/zip/ |
H A D | php_zip.stub.php | 219 public function setEncryptionName(string $name, int $method, ?string $password = null): bool {} function in ZipArchive
|
H A D | php_zip_arginfo.h | 361 ZEND_METHOD(ZipArchive, setEncryptionName); 450 ZEND_ME(ZipArchive, setEncryptionName, arginfo_class_ZipArchive_setEncryptionName, ZEND_ACC_PUBLIC)
|
H A D | php_zip.c | 2278 PHP_METHOD(ZipArchive, setEncryptionName) argument
|
Completed in 15 milliseconds