Example code on using the library
This commit is contained in:
parent
6cbd7f6634
commit
1f04075ef5
22
examples/sign.php
Normal file
22
examples/sign.php
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require dirname(__FILE__).'/../lib/openpgp.php';
|
||||||
|
require dirname(__FILE__).'/../lib/openpgp_crypt_rsa.php';
|
||||||
|
|
||||||
|
/* Parse secret key from STDIN, the key must not be password protected */
|
||||||
|
$wkey = OpenPGP_Message::parse(file_get_contents('php://stdin'));
|
||||||
|
$wkey = $wkey[0];
|
||||||
|
|
||||||
|
/* Create a new literal data packet */
|
||||||
|
$data = new OpenPGP_LiteralDataPacket('This is text.', array('format' => 'u', 'filename' => 'stuff.txt'));
|
||||||
|
|
||||||
|
/* Create a signer from the key */
|
||||||
|
$sign = new OpenPGP_Crypt_RSA($wkey);
|
||||||
|
|
||||||
|
/* The message is the signed data packet */
|
||||||
|
$m = $sign->sign($data);
|
||||||
|
|
||||||
|
/* Output the raw message bytes to STDOUT */
|
||||||
|
echo $m->to_bytes();
|
||||||
|
|
||||||
|
?>
|
19
examples/verify.php
Normal file
19
examples/verify.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require dirname(__FILE__).'/../lib/openpgp.php';
|
||||||
|
require dirname(__FILE__).'/../lib/openpgp_crypt_rsa.php';
|
||||||
|
|
||||||
|
/* Parse public key from STDIN */
|
||||||
|
$wkey = OpenPGP_Message::parse(file_get_contents('php://stdin'));
|
||||||
|
$wkey = $wkey[0];
|
||||||
|
|
||||||
|
/* Parse signed message from file named "t" */
|
||||||
|
$m = OpenPGP_Message::parse(file_get_contents('t'));
|
||||||
|
|
||||||
|
/* Create a verifier for the key */
|
||||||
|
$verify = new OpenPGP_Crypt_RSA($wkey);
|
||||||
|
|
||||||
|
/* Dump verification information to STDOUT */
|
||||||
|
var_dump($verify->verify($m));
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user