Remove debug code

This commit is contained in:
Stephen Paul Weber 2014-06-28 11:38:14 -05:00
parent d2913ccb8a
commit 775aa96118
1 changed files with 0 additions and 2 deletions

View File

@ -8,8 +8,6 @@ $key = OpenPGP_Message::parse(file_get_contents(dirname(__FILE__) . '/../tests/d
$data = new OpenPGP_LiteralDataPacket('This is text.', array('format' => 'u', 'filename' => 'stuff.txt'));
$encrypted = OpenPGP_Crypt_Symmetric::encrypt($key, new OpenPGP_Message(array($data)));
echo $encrypted->to_bytes();exit;
// Now decrypt it with the same key
$decryptor = new OpenPGP_Crypt_RSA($key);
$decrypted = $decryptor->decrypt($encrypted);