PHP Classes

<?php $crypt = new pcrypt(MODE_ECB, "BLOWFISH", "abcd"); $arc...

Recommend this page to a friend!

      Perfect Crypt Class  >  All threads  >  <?php $crypt = new pcrypt(MODE_ECB,...  >  (Un) Subscribe thread alerts  
Subject:<?php $crypt = new pcrypt(MODE_ECB,...
Summary:Package rating comment
Messages:1
Author:stipe kljucic
Date:2008-10-23 11:49:58
 

stipe kljucic rated this package as follows:

Utility: Not sure
Consistency: Not sure
Documentation: Not sure
Examples: Not sure

  1. <?php $crypt = new pcrypt(MODE_ECB,...   Reply   Report abuse  
Picture of stipe kljucic stipe kljucic - 2008-10-23 11:49:59
<?php
$crypt = new pcrypt(MODE_ECB, "BLOWFISH", "abcd");
$archive = file_get_contents("/home/archive.gz");
$cyphertext = $crypt->encrypt($archive);
$opentext = $cyphertext->decrypt($cyphertext);
file_put_contents("/home/new_archive.gz", $opentext);
?>
gunzip /home/new_archive.gz
gzip: archive.gz: invalid compressed data--format violated

-----
maybe I doing something wrong ??