encrypt/decrypt example

This commit is contained in:
Stephen Paul Weber 2013-01-26 17:01:36 -05:00
parent 7d776fd605
commit cb9f918022
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
$key = OpenPGP_Message::parse(file_get_contents(dirname(__FILE__) . '/../tests/data/helloKey.gpg'));
$data = new OpenPGP_LiteralDataPacket('This is text.', array('format' => 'u', 'filename' => 'stuff.txt'));
$encrypted = OpenPGP_Crypt_AES_TripleDES::encrypt($key, new OpenPGP_Message(array($data)));
// Now decrypt it with the same key
$decryptor = new OpenPGP_Crypt_RSA($key);
$decrypted = $decryptor->decrypt($encrypted);