diff --git a/examples/encryptDecrypt.php b/examples/encryptDecrypt.php new file mode 100644 index 0000000..159bf05 --- /dev/null +++ b/examples/encryptDecrypt.php @@ -0,0 +1,8 @@ + '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);