Clean up encryptDecrypt example
This commit is contained in:
parent
05b757ab6c
commit
58d1b5cee0
@ -1,8 +1,17 @@
|
|||||||
<?php
|
<?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
|
require dirname(__FILE__).'/../lib/openpgp.php';
|
||||||
$decryptor = new OpenPGP_Crypt_RSA($key);
|
require dirname(__FILE__).'/../lib/openpgp_crypt_rsa.php';
|
||||||
$decrypted = $decryptor->decrypt($encrypted);
|
require dirname(__FILE__).'/../lib/openpgp_crypt_aes_tripledes.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)));
|
||||||
|
|
||||||
|
echo $encrypted->to_bytes();exit;
|
||||||
|
|
||||||
|
// Now decrypt it with the same key
|
||||||
|
$decryptor = new OpenPGP_Crypt_RSA($key);
|
||||||
|
$decrypted = $decryptor->decrypt($encrypted);
|
||||||
|
|
||||||
|
var_dump($decrypted);
|
||||||
|
Loading…
Reference in New Issue
Block a user