Daha fazla araç AES-şifrelenmiş ZIP dosyalarını desteklemektedir. Bu bu kadar güvenli çalışır.
EDIT2: dinamik PHP AES-şifreli zip arşivleri oluşturmak için DotNetZip PHP kullanabilirsiniz. DotNetZip. NET dilleri (C #, VB, vb) için tasarlanmış bir. NET kütüphanedir. (Ama DotNetZip AES yapar ve ücretsiz, ve PHP çalışır: Sadece Windows üzerinde çalışır..
Bu benim kullanılan koddur. (Win32 üzerinde PHP v5.2.9)
<?php
try
{
$fname = "zip-generated-from-php-" . date('Y-m-d-His') . ".zip";
$zipOutput = "c:\\temp\\" . $fname;
$zipfact = new COM("Ionic.Zip.ZipFile");
$zip->Name = $zipOutput;
$dirToZip= "c:\\temp\\psh";
# Encryption: 3 => 256-bit AES.
# 2 => 128-bit AES.
# 1 => PKZIP (Weak).
# 0 => None
$zip->Encryption = 3;
$zip->Password = "AES-Encryption-Is-Secure";
$zip->AddDirectory($dirToZip);
$zip->Save();
$zip->Dispose();
if (file_exists($zipOutput))
{
header('Cache-Control: no-cache, must-revalidate');
header('Content-Type: application/x-zip');
header('Content-Disposition: attachment; filename=' . $fname);
header('Content-Length: ' . filesize($zipOutput));
readfile($zipOutput);
unlink($zipOutput);
}
else
{
echo '<html>';
echo ' <head>';
echo ' <title>Calling DotNetZip from PHP through COM</title>';
echo ' <link rel="stylesheet" href="basic.css"/>';
echo ' </head>';
echo '<body>';
echo '<h2>Whoops!</h2>' . "<br/>\n";
echo '<p>The file was not successfully generated.</p>';
echo '</body>';
echo '</html>';
}
}
catch (Exception $e)
{
echo '<html>';
echo ' <head>';
echo ' <title>Calling DotNetZip from PHP through COM</title>';
echo ' <link rel="stylesheet" href="basic.css"/>';
echo ' </head>';
echo '<body>';
echo '<h2>Whoops!</h2>' . "<br/>\n";
echo '<p>The file was not successfully generated.</p>';
echo '<p>Caught exception: ', $e->getMessage(), '</p>', "\n";
echo '<pre>';
echo $e->getTraceAsString(), "\n";
echo '</pre>';
echo '</body>';
echo '</html>';
}
?>
Ben PHP ile çalışması için DotNetZip değiştirmek zorunda: Ben Name özelliği okuma / yazma yapmak zorunda ve ben bu COM çağrılabilir yapmak zorunda kaldı. Bu değişiklik v1.8.2.3 release ilk mevcuttur.