mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-04 18:02:58 +00:00
0c7fd9a34d
- Upgrading phpseclib/phpseclib (2.0.4 => 2.0.34) - Upgrading singpolyma/openpgp-php (0.3.0 => 0.5.0)
17 lines
541 B
PHP
17 lines
541 B
PHP
<?php
|
|
|
|
@include_once dirname(__FILE__).'/../vendor/autoload.php';
|
|
require_once dirname(__FILE__).'/../lib/openpgp.php';
|
|
require_once dirname(__FILE__).'/../lib/openpgp_crypt_rsa.php';
|
|
|
|
/* Parse public key from STDIN */
|
|
$wkey = OpenPGP_Message::parse(file_get_contents('php://stdin'));
|
|
|
|
/* 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));
|