1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
|
<?php
require_once 'Horde/Crypt.php';
/**
* Armor Header Lines - From RFC 2440
*
* An Armor Header Line consists of the appropriate header line text
* surrounded by five (5) dashes ('-', 0x2D) on either side of the header
* line text. The header line text is chosen based upon the type of data that
* is being encoded in Armor, and how it is being encoded. Header line texts
* include the following strings:
*
* All Armor Header Lines are prefixed with 'PGP'.
*
* The Armor Tail Line is composed in the same manner as the Armor Header
* Line, except the string "BEGIN" is replaced by the string "END."
*/
/** Used for signed, encrypted, or compressed files. */
define('PGP_ARMOR_MESSAGE', 1);
/** Used for signed files. */
define('PGP_ARMOR_SIGNED_MESSAGE', 2);
/** Used for armoring public keys. */
define('PGP_ARMOR_PUBLIC_KEY', 3);
/** Used for armoring private keys. */
define('PGP_ARMOR_PRIVATE_KEY', 4);
/**
* Used for detached signatures, PGP/MIME signatures, and natures following
* clearsigned messages.
*/
define('PGP_ARMOR_SIGNATURE', 5);
/** Regular text contained in an PGP message. */
define('PGP_ARMOR_TEXT', 6);
/** The default public PGP keyserver to use. */
define('PGP_KEYSERVER_PUBLIC', 'wwwkeys.pgp.net');
/**
* The number of times the keyserver refuses connection before an error is
* returned.
*/
define('PGP_KEYSERVER_REFUSE', 3);
/**
* The number of seconds that PHP will attempt to connect to the keyserver
* before it will stop processing the request.
*/
define('PGP_KEYSERVER_TIMEOUT', 10);
/**
* Horde_Crypt_pgp:: provides a framework for Horde applications to interact
* with the GNU Privacy Guard program ("GnuPG"). GnuPG implements the OpenPGP
* standard (RFC 2440).
*
* GnuPG Website: http://www.gnupg.org/
*
* This class has been developed with, and is only guaranteed to work with,
* Version 1.21 or above of GnuPG.
*
* $Horde: framework/Crypt/Crypt/pgp.php,v 1.85.2.15 2006/07/20 09:02:38 jan Exp $
*
* Copyright 2002-2006 Michael Slusarz <slusarz@bigworm.colorado.edu>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Michael Slusarz <slusarz@bigworm.colorado.edu>
* @since Horde 3.0
* @package Horde_Crypt
*/
class Horde_Crypt_pgp extends Horde_Crypt {
/**
* Strings in armor header lines used to distinguish between the different
* types of PGP decryption/encryption.
*
* @var array
*/
var $_armor = array(
'MESSAGE' => PGP_ARMOR_MESSAGE,
'SIGNED MESSAGE' => PGP_ARMOR_SIGNED_MESSAGE,
'PUBLIC KEY BLOCK' => PGP_ARMOR_PUBLIC_KEY,
'PRIVATE KEY BLOCK' => PGP_ARMOR_PRIVATE_KEY,
'SIGNATURE' => PGP_ARMOR_SIGNATURE
);
/**
* The list of PGP hash algorithms (from RFC 3156).
*
* @var array
*/
var $_hashAlg = array(
1 => 'pgp-md5',
2 => 'pgp-sha1',
3 => 'pgp-ripemd160',
5 => 'pgp-md2',
6 => 'pgp-tiger192',
7 => 'pgp-haval-5-160',
8 => 'pgp-sha256',
9 => 'pgp-sha384',
10 => 'pgp-sha512',
);
/**
* GnuPG program location/common options.
*
* @var array
*/
var $_gnupg;
/**
* Filename of the temporary public keyring.
*
* @var string
*/
var $_publicKeyring;
/**
* Filename of the temporary private keyring.
*
* @var string
*/
var $_privateKeyring;
/**
* The existence of this property indicates that multiple recipient
* encryption is available.
*
* @since Horde 3.1
*
* @deprecated
*
* @var boolean
*/
var $multipleRecipientEncryption = true;
/**
* Constructor.
*
* @param array $params Parameter array containing the path to the GnuPG
* binary (key = 'program') and to a temporary
* directory.
*/
function Horde_Crypt_pgp($params = array())
{
$this->_tempdir = Util::createTempDir(true, $params['temp']);
if (empty($params['program'])) {
Horde::fatal(PEAR::raiseError(_("The location of the GnuPG binary must be given to the Crypt_pgp:: class.")), __FILE__, __LINE__);
}
/* Store the location of GnuPG and set common options. */
$this->_gnupg = array(
$params['program'],
'--no-tty',
'--no-secmem-warning',
'--no-options',
'--no-default-keyring',
'--quiet',
'--yes',
'--homedir ' . $this->_tempdir
);
if (substr(PHP_OS, 0, 3) != 'WIN') {
array_unshift($this->_gnupg, 'LANG= ;');
}
}
/**
* Generates a personal Public/Private keypair combination.
*
* @param string $realname The name to use for the key.
* @param string $email The email to use for the key.
* @param string $passphrase The passphrase to use for the key.
* @param string $comment The comment to use for the key.
* @param integer $keylength The keylength to use for the key.
*
* @return array An array consisting of the public key and the private
* key, or PEAR_Error on error.
* <pre>
* Return array:
* Key Value
* --------------------------
* 'public' => Public Key
* 'private' => Private Key
* </pre>
*/
function generateKey($realname, $email, $passphrase, $comment = '',
$keylength = 1024)
{
/* Check for secure connection. */
$secure_check = $this->requireSecureConnection();
if (is_a($secure_check, 'PEAR_Error')) {
return $secure_check;
}
/* Create temp files to hold the generated keys. */
$pub_file = $this->_createTempFile('horde-pgp');
$secret_file = $this->_createTempFile('horde-pgp');
/* Create the config file necessary for GnuPG to run in batch mode. */
/* TODO: Sanitize input, More user customizable? */
$input = array();
$input[] = '%pubring ' . $pub_file;
$input[] = '%secring ' . $secret_file;
$input[] = 'Key-Type: DSA';
$input[] = 'Key-Length: 1024';
$input[] = 'Subkey-Type: ELG-E';
$input[] = 'Subkey-Length: ' . $keylength;
$input[] = 'Name-Real: ' . $realname;
if (!empty($comment)) {
$input[] = 'Name-Comment: ' . $comment;
}
$input[] = 'Name-Email: ' . $email;
$input[] = 'Expire-Date: 0';
$input[] = 'Passphrase: ' . $passphrase;
$input[] = '%commit';
/* Run through gpg binary. */
$cmdline = array(
'--gen-key',
'--batch',
'--armor'
);
$this->_callGpg($cmdline, 'w', $input);
/* Get the keys from the temp files. */
$public_key = file($pub_file);
$secret_key = file($secret_file);
/* If either key is empty, something went wrong. */
if (empty($public_key) || empty($secret_key)) {
return PEAR::raiseError(_("Public/Private keypair not generated successfully."), 'horde.error');
}
return array('public' => $public_key, 'private' => $secret_key);
}
/**
* Returns information on a PGP data block.
*
* @param string $pgpdata The PGP data block.
*
* @return array An array with information on the PGP data block. If an
* element is not present in the data block, it will
* likewise not be set in the array.
* <pre>
* Array Format:
* -------------
* [public_key]/[secret_key] => Array
* (
* [created] => Key creation - UNIX timestamp
* [expires] => Key expiration - UNIX timestamp (0 = never expires)
* [size] => Size of the key in bits
* )
*
* [fingerprint] => Fingerprint of the PGP data (if available)
* 16-bit hex value
*
* [signature] => Array (
* [id{n}/'_SIGNATURE'] => Array (
* [name] => Full Name
* [comment] => Comment
* [email] => E-mail Address
* [fingerprint] => 16-bit hex value
* [created] => Signature creation - UNIX timestamp
* [micalg] => The hash used to create the signature
* [sig_{hex}] => Array [details of a sig verifying the ID] (
* [created] => Signature creation - UNIX timestamp
* [fingerprint] => 16-bit hex value
* [micalg] => The hash used to create the signature
* )
* )
* )
* </pre>
*
* Each user ID will be stored in the array 'signature' and have data
* associated with it, including an array for information on each
* signature that has signed that UID. Signatures not associated with a
* UID (e.g. revocation signatures and sub keys) will be stored under the
* special keyword '_SIGNATURE'.
*/
function pgpPacketInformation($pgpdata)
{
$data_array = array();
$fingerprint = '';
$header = null;
$input = $this->_createTempFile('horde-pgp');
$sig_id = $uid_idx = 0;
/* Store message in temporary file. */
$fp = fopen($input, 'w+');
fputs($fp, $pgpdata);
fclose($fp);
$cmdline = array(
'--list-packets',
$input
);
$result = $this->_callGpg($cmdline, 'r');
foreach (explode("\n", $result->stdout) as $line) {
/* Headers are prefaced with a ':' as the first character on the
line. */
if (strpos($line, ':') === 0) {
$lowerLine = String::lower($line);
/* If we have a key (rather than a signature block), get the
key's fingerprint */
if (strpos($lowerLine, ':public key packet:') !== false ||
strpos($lowerLine, ':secret key packet:') !== false) {
$cmdline = array(
'--with-colons',
$input
);
$data = $this->_callGpg($cmdline, 'r');
if (preg_match("/(sec|pub):.*:.*:.*:([A-F0-9]{16}):/", $data->stdout, $matches)) {
$fingerprint = $matches[2];
}
}
if (strpos($lowerLine, ':public key packet:') !== false) {
$header = 'public_key';
} elseif (strpos($lowerLine, ':secret key packet:') !== false) {
$header = 'secret_key';
} elseif (strpos($lowerLine, ':user id packet:') !== false) {
$uid_idx++;
$line = preg_replace_callback('/\\\\x([0-9a-f]{2})/', create_function('$a', 'return chr(hexdec($a[1]));'), $line);
if (preg_match("/\"([^\<]+)\<([^\>]+)\>\"/", $line, $matches)) {
$header = 'id' . $uid_idx;
if (preg_match('/([^\(]+)\((.+)\)$/', trim($matches[1]), $comment_matches)) {
$data_array['signature'][$header]['name'] = trim($comment_matches[1]);
$data_array['signature'][$header]['comment'] = $comment_matches[2];
} else {
$data_array['signature'][$header]['name'] = trim($matches[1]);
$data_array['signature'][$header]['comment'] = '';
}
$data_array['signature'][$header]['email'] = $matches[2];
$data_array['signature'][$header]['fingerprint'] = $fingerprint;
}
} elseif (strpos($lowerLine, ':signature packet:') !== false) {
if (empty($header) || empty($uid_idx)) {
$header = '_SIGNATURE';
}
if (preg_match("/keyid\s+([0-9A-F]+)/i", $line, $matches)) {
$sig_id = $matches[1];
$data_array['signature'][$header]['sig_' . $sig_id]['fingerprint'] = $matches[1];
$data_array['fingerprint'] = $matches[1];
}
} else {
$header = null;
}
} else {
if (($header == 'secret_key') || ($header == 'public_key')) {
if (preg_match("/created\s+(\d+),\s+expires\s+(\d+)/i", $line, $matches)) {
$data_array[$header]['created'] = $matches[1];
$data_array[$header]['expires'] = $matches[2];
} elseif (preg_match("/\s+[sp]key\[0\]:\s+\[(\d+)/i", $line, $matches)) {
$data_array[$header]['size'] = $matches[1];
}
} elseif ($header) {
if (preg_match("/version\s+\d+,\s+created\s+(\d+)/i", $line, $matches)) {
$data_array['signature'][$header]['sig_' . $sig_id]['created'] = $matches[1];
} elseif (preg_match("/digest algo\s+(\d{1})/", $line, $matches)) {
$micalg = $this->_hashAlg[$matches[1]];
$data_array['signature'][$header]['sig_' . $sig_id]['micalg'] = $micalg;
if ($header == '_SIGNATURE') {
/* Likely a signature block, not a key. */
$data_array['signature']['_SIGNATURE']['micalg'] = $micalg;
}
if ($sig_id == $fingerprint) {
/* Self signing signature - we can assume the
micalg value from this signature is that for
the key */
$data_array['signature']['_SIGNATURE']['micalg'] = $micalg;
$data_array['signature'][$header]['micalg'] = $micalg;
}
}
}
}
}
$fingerprint && $data_array['fingerprint'] = $fingerprint;
return $data_array;
}
/**
* Returns human readable information on a PGP key.
*
* @param string $pgpdata The PGP data block.
*
* @return string Tabular information on the PGP key.
*/
function pgpPrettyKey($pgpdata)
{
$msg = '';
$packet_info = $this->pgpPacketInformation($pgpdata);
if (!empty($packet_info['signature'])) {
/* Making the property names the same width for all
* localizations .*/
$leftrow = array(_("Name"), _("Key Type"), _("Key Creation"),
_("Expiration Date"), _("Key Length"),
_("Comment"), _("E-Mail"), _("Hash-Algorithm"),
_("Key Fingerprint"));
$leftwidth = array_map('strlen', $leftrow);
$maxwidth = max($leftwidth) + 2;
array_walk($leftrow, create_function('&$s, $k, $m', '$s = $s . ":" . str_repeat(" ", $m - String::length($s));'), $maxwidth);
foreach (array_keys($packet_info['signature']) as $uid_idx) {
if ($uid_idx == '_SIGNATURE') continue;
$key_info = $this->pgpPacketSignatureByUidIndex($pgpdata, $uid_idx);
$msg .= $leftrow[0] . stripcslashes($key_info['name']) . "\n";
$msg .= $leftrow[1] . (($key_info['key_type'] == 'public_key') ? _("Public Key") : _("Private Key")) . "\n";
$msg .= $leftrow[2] . strftime("%D", $key_info['key_created']) . "\n";
$msg .= $leftrow[3] . (empty($key_info['key_expires']) ? '[' . _("Never") . ']' : strftime("%D", $key_info['key_expires'])) . "\n";
$msg .= $leftrow[4] . $key_info['key_size'] . " Bytes\n";
$msg .= $leftrow[5] . (empty($key_info['comment']) ? '[' . _("None") . ']' : $key_info['comment']) . "\n";
$msg .= $leftrow[6] . $key_info['email'] . "\n";
$msg .= $leftrow[7] . (empty($key_info['micalg']) ? '[' . _("Unknown") . ']' : $key_info['micalg']) . "\n";
$msg .= $leftrow[8] . (empty($key_info['fingerprint']) ? '[' . _("Unknown") . ']' : $key_info['fingerprint']) . "\n\n";
}
}
return $msg;
}
/**
* Returns only information on the first ID that matches the email address
* input.
*
* @param string $pgpdata The PGP data block.
* @param string $email An e-mail address.
*
* @return array An array with information on the PGP data block. If an
* element is not present in the data block, it will
* likewise not be set in the array.
* <pre>
* Array Fields:
* -------------
* key_created => Key creation - UNIX timestamp
* key_expires => Key expiration - UNIX timestamp (0 = never expires)
* key_size => Size of the key in bits
* key_type => The key type (public_key or secret_key)
* name => Full Name
* comment => Comment
* email => E-mail Address
* fingerprint => 16-bit hex value
* created => Signature creation - UNIX timestamp
* micalg => The hash used to create the signature
* </pre>
*/
function pgpPacketSignature($pgpdata, $email)
{
$data = $this->pgpPacketInformation($pgpdata);
$key_type = null;
$return_array = array();
/* Check that [signature] key exists. */
if (!isset($data['signature'])) {
return $return_array;
}
/* Store the signature information now. */
if (($email == '_SIGNATURE') &&
isset($data['signature']['_SIGNATURE'])) {
foreach ($data['signature'][$email] as $key => $value) {
$return_array[$key] = $value;
}
} else {
$uid_idx = 1;
while (isset($data['signature']['id' . $uid_idx])) {
if ($data['signature']['id' . $uid_idx]['email'] == $email) {
foreach ($data['signature']['id' . $uid_idx] as $key => $val) {
$return_array[$key] = $val;
}
break;
}
$uid_idx++;
}
}
return $this->_pgpPacketSignature($data, $return_array);
}
/**
* Returns information on a PGP signature embedded in PGP data. Similar
* to pgpPacketSignature(), but returns information by unique User ID
* Index (format id{n} where n is an integer of 1 or greater).
*
* @param string $pgpdata See pgpPacketSignature().
* @param integer $uid_idx The UID index.
*
* @return array See pgpPacketSignature().
*/
function pgpPacketSignatureByUidIndex($pgpdata, $uid_idx)
{
$data = $this->pgpPacketInformation($pgpdata);
$key_type = null;
$return_array = array();
/* Search for the UID index. */
if (!isset($data['signature']) ||
!isset($data['signature'][$uid_idx])) {
return $return_array;
}
/* Store the signature information now. */
foreach ($data['signature'][$uid_idx] as $key => $value) {
$return_array[$key] = $value;
}
return $this->_pgpPacketSignature($data, $return_array);
}
/**
* Adds some data to the pgpPacketSignature*() function array.
*
* @access private
*
* @param array $data See pgpPacketSignature().
* @param array $retarray The return array.
*
* @return array The return array.
*/
function _pgpPacketSignature($data, $retarray)
{
/* If empty, return now. */
if (empty($retarray)) {
return $retarray;
}
$key_type = null;
/* Store any public/private key information. */
if (isset($data['public_key'])) {
$key_type = 'public_key';
} elseif (isset($data['secret_key'])) {
$key_type = 'secret_key';
}
if ($key_type) {
$retarray['key_type'] = $key_type;
if (isset($data[$key_type]['created'])) {
$retarray['key_created'] = $data[$key_type]['created'];
}
if (isset($data[$key_type]['expires'])) {
$retarray['key_expires'] = $data[$key_type]['expires'];
}
if (isset($data[$key_type]['size'])) {
$retarray['key_size'] = $data[$key_type]['size'];
}
}
return $retarray;
}
/**
* Returns the short fingerprint (Key ID) of the key used to sign a block
* of PGP data.
*
* @param string $text The PGP signed text block.
*
* @return string The short fingerprint of the key used to sign $text.
*/
function getSignersFingerprint($text)
{
$fingerprint = null;
$input = $this->_createTempFile('horde-pgp');
$fp = fopen($input, 'w+');
fputs($fp, $text);
fclose($fp);
$cmdline = array(
'--verify',
$input,
'2>&1'
);
$result = $this->_callGpg($cmdline, 'r');
if (preg_match('/gpg:\sSignature\smade.*ID\s+([A-F0-9]{8})\s+/', $result->stdout, $matches)) {
$fingerprint = $matches[1];
}
return $fingerprint;
}
/**
* Verify a passphrase for a given public/private keypair.
*
* @param string $public_key The user's PGP public key.
* @param string $private_key The user's PGP private key.
* @param string $passphrase The user's passphrase.
*
* @return boolean Returns true on valid passphrase, false on invalid
* passphrase, and PEAR_Error on error.
*/
function verifyPassphrase($public_key, $private_key, $passphrase)
{
/* Check for secure connection. */
$secure_check = $this->requireSecureConnection();
if (is_a($secure_check, 'PEAR_Error')) {
return $secure_check;
}
/* Encrypt a test message. */
$result = $this->encrypt('Test', array('type' => 'message', 'pubkey' => $public_key));
if (is_a($result, 'PEAR_Error')) {
return false;
}
/* Try to decrypt the message. */
$result = $this->decrypt($result, array('type' => 'message', 'pubkey' => $public_key, 'privkey' => $private_key, 'passphrase' => $passphrase));
if (is_a($result, 'PEAR_Error')) {
return false;
}
return true;
}
/**
* Parses a message into text and PGP components.
*
* @param string $text The text to parse.
*
* @return array An array with the parsed text, returned in blocks of
* text corresponding to their actual order.
* <pre>
* Return array:
* Key Value
* -------------------------------------------------
* 'type' => The type of data contained in block.
* Valid types are defined at the top of this class
* (the PGP_ARMOR_* constants).
* 'data' => The actual data for each section.
* </pre>
*/
function parsePGPData($text)
{
$data = array();
$buffer = explode("\n", $text);
/* Set $temp_array to be of type PGP_ARMOR_TEXT. */
$temp_array = array();
$temp_array['type'] = PGP_ARMOR_TEXT;
foreach ($buffer as $value) {
if (preg_match('/^-----(BEGIN|END) PGP ([^-]+)-----\s*$/', $value, $matches)) {
if (isset($temp_array['data'])) {
$data[] = $temp_array;
}
unset($temp_array);
$temp_array = array();
if ($matches[1] === 'BEGIN') {
$temp_array['type'] = $this->_armor[$matches[2]];
$temp_array['data'][] = $value;
} elseif ($matches[1] === 'END') {
$temp_array['type'] = PGP_ARMOR_TEXT;
$data[count($data) - 1]['data'][] = $value;
}
} else {
$temp_array['data'][] = $value;
}
}
if (isset($temp_array['data'])) {
$data[] = $temp_array;
}
return $data;
}
/**
* Returns a PGP public key from a public keyserver.
*
* @param string $fprint The fingerprint of the PGP key.
* @param string $server The keyserver to use.
* @param float $timeout The keyserver timeout.
*
* @return string The PGP public key, or PEAR_Error on error.
*/
function getPublicKeyserver($fprint, $server = PGP_KEYSERVER_PUBLIC,
$timeout = PGP_KEYSERVER_TIMEOUT)
{
/* Get the 8 character fingerprint string. */
if (strpos($fprint, '0x') === 0) {
$fprint = substr($fprint, 2);
}
if (strlen($fprint) > 8) {
$fprint = substr($fprint, 8);
}
$fprint = '0x' . $fprint;
/* Connect to the public keyserver. */
$cmd = 'GET /pks/lookup?op=get&exact=on&search=' . $fprint . ' HTTP/1.0';
$output = $this->_connectKeyserver($cmd, $server, $timeout);
if (is_a($output, 'PEAR_Error')) {
return $output;
}
/* Strip HTML Tags from output. */
if (($start = strstr($output, '-----BEGIN'))) {
$length = strpos($start, '-----END') + 34;
return substr($start, 0, $length);
} else {
return PEAR::raiseError(_("Could not obtain public key from the keyserver."), 'horde.error');
}
}
/**
* Sends a PGP public key to a public keyserver.
*
* @param string $pubkey The PGP public key
* @param string $server The keyserver to use.
* @param float $timeout The keyserver timeout.
*
* @return PEAR_Error PEAR_Error on error/failure.
*/
function putPublicKeyserver($pubkey, $server = PGP_KEYSERVER_PUBLIC,
$timeout = PGP_KEYSERVER_TIMEOUT)
{
/* Get the fingerprint of the public key. */
$info = $this->pgpPacketInformation($pubkey);
/* See if the public key already exists on the keyserver. */
if (!is_a($this->getPublicKeyserver($info['fingerprint'], $server, $timeout), 'PEAR_Error')) {
return PEAR::raiseError(_("Key already exists on the public keyserver."), 'horde.warning');
}
/* Connect to the public keyserver. _connectKeyserver() returns a
PEAR_Error object on error and the output text on success. */
$pubkey = 'keytext=' . urlencode(rtrim($pubkey));
$cmd = array(
'POST /pks/add HTTP/1.0',
'Host: ' . $server . ':11371',
'User-Agent: Horde Application Framework 3.1',
'Content-Type: application/x-www-form-urlencoded',
'Content-Length: ' . strlen($pubkey),
'Connection: close',
'',
$pubkey
);
$result = $this->_connectKeyserver(implode("\r\n", $cmd), $server, $timeout);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
}
/**
* Connects to a public key server via HKP (Horrowitz Keyserver Protocol).
*
* @access private
*
* @param string $command The PGP command to run.
* @param string $server The keyserver to use.
* @param float $timeout The timeout value.
*
* @return string The text from standard output on success, or PEAR_Error
* on error/failure.
*/
function _connectKeyserver($command, $server, $timeout)
{
$connRefuse = 0;
$output = '';
/* Attempt to get the key from the keyserver. */
do {
$connError = false;
$errno = $errstr = null;
/* The HKP server is located on port 11371. */
$fp = @fsockopen($server, '11371', $errno, $errstr, $timeout);
if (!$fp) {
$connError = true;
} else {
fputs($fp, $command . "\n\n");
while (!feof($fp)) {
$output .= fgets($fp, 1024);
}
fclose($fp);
}
if ($connError) {
if (++$connRefuse === PGP_KEYSERVER_REFUSE) {
if ($errno == 0) {
$output = PEAR::raiseError(_("Connection refused to the public keyserver."), 'horde.error');
} else {
$output = PEAR::raiseError(sprintf(_("Connection refused to the public keyserver. Reason: %s (%s)"), String::convertCharset($errstr, NLS::getExternalCharset()), $errno), 'horde.error');
}
break;
}
}
} while ($connError);
return $output;
}
/**
* Encrypts text using PGP.
*
* @param string $text The text to be PGP encrypted.
* @param array $params The parameters needed for encryption.
* See the individual _encrypt*() functions for the
* parameter requirements.
*
* @return string The encrypted message, or PEAR_Error on error.
*/
function encrypt($text, $params = array())
{
if (isset($params['type'])) {
if ($params['type'] === 'message') {
return $this->_encryptMessage($text, $params);
} elseif ($params['type'] === 'signature') {
return $this->_encryptSignature($text, $params);
}
}
}
/**
* Decrypts text using PGP.
*
* @param string $text The text to be PGP decrypted.
* @param array $params The parameters needed for decryption.
* See the individual _decrypt*() functions for the
* parameter requirements.
*
* @return string The decrypted message, or PEAR_Error on error.
*/
function decrypt($text, $params = array())
{
if (isset($params['type'])) {
if ($params['type'] === 'message') {
return $this->_decryptMessage($text, $params);
} elseif (($params['type'] === 'signature') ||
($params['type'] === 'detached-signature')) {
return $this->_decryptSignature($text, $params);
}
}
}
/**
* Creates a temporary gpg keyring.
*
* @access private
*
* @param string $type The type of key to analyze. Either 'public'
* (Default) or 'private'
*
* @return string Command line keystring option to use with gpg program.
*/
function _createKeyring($type = 'public')
{
$type = String::lower($type);
if ($type === 'public') {
if (empty($this->_publicKeyring)) {
$this->_publicKeyring = $this->_createTempFile('horde-pgp');
}
return '--keyring ' . $this->_publicKeyring;
} elseif ($type === 'private') {
if (empty($this->_privateKeyring)) {
$this->_privateKeyring = $this->_createTempFile('horde-pgp');
}
return '--secret-keyring ' . $this->_privateKeyring;
}
}
/**
* Adds PGP keys to the keyring.
*
* @access private
*
* @param mixed $keys A single key or an array of key(s) to add to the
* keyring.
* @param string $type The type of key(s) to add. Either 'public'
* (Default) or 'private'
*
* @return string Command line keystring option to use with gpg program.
*/
function _putInKeyring($keys = array(), $type = 'public')
{
$type = String::lower($type);
if (!is_array($keys)) {
$keys = array($keys);
}
/* Create the keyrings if they don't already exist. */
$keyring = $this->_createKeyring($type);
/* Store the key(s) in the keyring. */
$cmdline = array(
'--allow-secret-key-import',
'--fast-import',
$keyring
);
$this->_callGpg($cmdline, 'w', array_values($keys));
return $keyring;
}
/**
* Encrypts a message in PGP format using a public key.
*
* @access private
*
* @param string $text The text to be encrypted.
* @param array $params The parameters needed for encryption.
* <pre>
* Parameters:
* ===========
* 'type' => 'message' (REQUIRED)
* 'pubkey' => PGP public key. (Optional) (DEPRECATED)
* 'email' => E-mail address of recipient. If not present, or not found
* in the public key, the first e-mail address found in the
* key will be used instead. (Optional) (DEPRECATED)
* 'recips' => An array with the e-mail address of the recipient as
* the key and that person's public key as the value.
* (REQUIRED)
* </pre>
*
* @return string The encrypted message, or PEAR_Error on error.
*/
function _encryptMessage($text, $params)
{
$email = null;
if (!isset($params['recips'])) {
/* Check for required parameters. */
if (!isset($params['pubkey'])) {
return PEAR::raiseError(_("A public PGP key is required to encrypt a message."), 'horde.error');
}
/* Get information on the key. */
if (isset($params['email'])) {
$key_info = $this->pgpPacketSignature($params['pubkey'], $params['email']);
if (!empty($key_info)) {
$email = $key_info['email'];
}
}
/* If we have no email address at this point, use the first email
address found in the public key. */
if (empty($email)) {
$key_info = $this->pgpPacketInformation($params['pubkey']);
if (isset($key_info['signature']['id1']['email'])) {
$email = $key_info['signature']['id1']['email'];
} else {
return PEAR::raiseError(_("Could not determine the recipient's e-mail address."), 'horde.error');
}
}
$params['recips'] = array($email => $params['pubkey']);
}
/* Store public key in temporary keyring. */
$keyring = $this->_putInKeyring(array_values($params['recips']));
/* Encrypt the document. */
$cmdline = array(
'--armor',
'--batch',
'--always-trust',
$keyring,
'--encrypt'
);
foreach (array_keys($params['recips']) as $val) {
$cmdline[] = '--recipient ' . $val;
}
$result = $this->_callGpg($cmdline, 'w', $text, true, true);
if (empty($result->output)) {
$error = preg_replace('/\n.*/', '', $result->stderr);
return PEAR::raiseError(_("Could not PGP encrypt message: ") . $error, 'horde.error');
}
return $result->output;
}
/**
* Signs a message in PGP format using a private key.
*
* @access private
*
* @param string $text The text to be signed.
* @param array $params The parameters needed for signing.
* <pre>
* Parameters:
* ===========
* 'type' => 'signature' (REQUIRED)
* 'pubkey' => PGP public key. (REQUIRED)
* 'privkey' => PGP private key. (REQUIRED)
* 'passphrase' => Passphrase for PGP Key. (REQUIRED)
* 'sigtype' => Determine the signature type to use. (Optional)
* 'cleartext' -- Make a clear text signature
* 'detach' -- Make a detached signature (DEFAULT)
* </pre>
*
* @return string The signed message, or PEAR_Error on error.
*/
function _encryptSignature($text, $params)
{
/* Check for secure connection. */
$secure_check = $this->requireSecureConnection();
if (is_a($secure_check, 'PEAR_Error')) {
return $secure_check;
}
/* Check for required parameters. */
if (!isset($params['pubkey']) ||
!isset($params['privkey']) ||
!isset($params['passphrase'])) {
return PEAR::raiseError(_("A public PGP key, private PGP key, and passphrase are required to sign a message."), 'horde.error');
}
/* Create temp files for input. */
$input = $this->_createTempFile('horde-pgp');
/* Encryption requires both keyrings. */
$pub_keyring = $this->_putInKeyring(array($params['pubkey']));
$sec_keyring = $this->_putInKeyring(array($params['privkey']), 'private');
/* Store message in temporary file. */
$fp = fopen($input, 'w+');
fputs($fp, $text);
fclose($fp);
/* Determine the signature type to use. */
$cmdline = array();
if (isset($params['sigtype']) &&
$params['sigtype'] == 'cleartext') {
$sign_type = '--clearsign';
} else {
$sign_type = '--detach-sign';
}
/* Additional GPG options. */
$cmdline += array(
'--armor',
'--batch',
'--passphrase-fd 0',
$sec_keyring,
$pub_keyring,
$sign_type,
$input
);
/* Sign the document. */
$result = $this->_callGpg($cmdline, 'w', $params['passphrase'], true, true);
if (empty($result->output)) {
$error = preg_replace('/\n.*/', '', $result->stderr);
return PEAR::raiseError(_("Could not PGP sign message: ") . $error, 'horde.error');
} else {
return $result->output;
}
}
/**
* Decrypts an PGP encrypted message using a private/public keypair and a
* passhprase.
*
* @access private
*
* @param string $text The text to be decrypted.
* @param array $params The parameters needed for decryption.
* <pre>
* Parameters:
* ===========
* 'type' => 'message' (REQUIRED)
* 'pubkey' => PGP public key. (REQUIRED)
* 'privkey' => PGP private key. (REQUIRED)
* 'passphrase' => Passphrase for PGP Key. (REQUIRED)
* </pre>
*
* @return stdClass An object with the following properties, or PEAR_Error
* on error:
* <pre>
* 'message' - The decrypted message.
* 'sig_result' - The result of the signature test.
* </pre>
*/
function _decryptMessage($text, $params)
{
/* Check for secure connection. */
$secure_check = $this->requireSecureConnection();
if (is_a($secure_check, 'PEAR_Error')) {
return $secure_check;
}
$good_sig_flag = false;
/* Check for required parameters. */
if (!isset($params['pubkey']) ||
!isset($params['privkey']) ||
!isset($params['passphrase'])) {
return PEAR::raiseError(_("A public PGP key, private PGP key, and passphrase are required to decrypt a message."), 'horde.error');
}
/* Create temp files. */
$input = $this->_createTempFile('horde-pgp');
/* Decryption requires both keyrings. */
$pub_keyring = $this->_putInKeyring(array($params['pubkey']));
$sec_keyring = $this->_putInKeyring(array($params['privkey']), 'private');
/* Store message in file. */
$fp = fopen($input, 'w+');
fputs($fp, $text);
fclose($fp);
/* Decrypt the document now. */
$cmdline = array(
'--always-trust',
'--armor',
'--batch',
'--passphrase-fd 0',
$sec_keyring,
$pub_keyring,
'--decrypt',
$input
);
$result = $this->_callGpg($cmdline, 'w', $params['passphrase'], true, true);
if (empty($result->output)) {
$error = preg_replace('/\n.*/', '', $result->stderr);
return PEAR::raiseError(_("Could not decrypt PGP data: ") . $error, 'horde.error');
}
/* Create the return object. */
$ob = &new stdClass;
$ob->message = $result->output;
/* Check the PGP signature. */
$sig_check = $this->_checkSignatureResult($result->stderr);
if (is_a($sig_check, 'PEAR_Error')) {
$ob->sig_result = $sig_check;
} else {
$ob->sig_result = ($sig_check) ? $result->stderr : '';
}
return $ob;
}
/**
* Decrypts an PGP signed message using a public key.
*
* @access private
*
* @param string $text The text to be verified.
* @param array $params The parameters needed for verification.
* <pre>
* Parameters:
* ===========
* 'type' => 'signature' or 'detached-signature' (REQUIRED)
* 'pubkey' => PGP public key. (REQUIRED)
* 'signature' => PGP signature block. (REQUIRED for detached signature)
* </pre>
*
* @return string The verification message from gpg. If no signature,
* returns empty string, and PEAR_Error on error.
*/
function _decryptSignature($text, $params)
{
/* Check for required parameters. */
if (!isset($params['pubkey'])) {
return PEAR::raiseError(_("A public PGP key is required to verify a signed message."), 'horde.error');
}
if (($params['type'] === 'detached-signature') &&
!isset($params['signature'])) {
return PEAR::raiseError(_("The detached PGP signature block is required to verify the signed message."), 'horde.error');
}
$good_sig_flag = 0;
/* Create temp files for input. */
$input = $this->_createTempFile('horde-pgp');
/* Store public key in temporary keyring. */
$keyring = $this->_putInKeyring($params['pubkey']);
/* Store the message in a temporary file. */
$fp = fopen($input, 'w+');
fputs($fp, $text);
fclose($fp);
/* Options for the GPG binary. */
$cmdline = array(
'--armor',
'--always-trust',
'--batch',
'--charset ' . NLS::getCharset(),
$keyring,
'--verify'
);
/* Extra stuff to do if we are using a detached signature. */
if ($params['type'] === 'detached-signature') {
$sigfile = $this->_createTempFile('horde-pgp');
$cmdline[] = $sigfile . ' ' . $input;
$fp = fopen($sigfile, 'w+');
fputs($fp, $params['signature']);
fclose($fp);
} else {
$cmdline[] = $input;
}
$cmdline[] = '2>&1';
/* Verify the signature.
We need to catch standard error output, since this is where
the signature information is sent. */
$result = $this->_callGpg($cmdline, 'r');
$sig_result = $this->_checkSignatureResult($result->stdout);
if (is_a($sig_result, 'PEAR_Error')) {
return $sig_result;
} else {
return ($sig_result) ? $result->stdout : '';
}
}
/**
* Checks signature result from the GnuPG binary.
*
* @access private
*
* @param string $result The signature result.
*
* @return boolean True if signature is good.
*/
function _checkSignatureResult($result)
{
/* Good signature:
* gpg: Good signature from "blah blah blah (Comment)"
* Bad signature:
* gpg: BAD signature from "blah blah blah (Comment)" */
if (strpos($result, 'gpg: BAD signature') !== false) {
return PEAR::raiseError($result, 'horde.error');
} elseif (strpos($result, 'gpg: Good signature') !== false) {
return true;
} else {
return false;
}
}
/**
* Signs a MIME_Part using PGP.
*
* @param MIME_Part $mime_part The MIME_Part object to sign.
* @param array $params The parameters required for signing.
* @see _encryptSignature().
*
* @return MIME_Part A MIME_Part object that is signed according to RFC
* 2015/3156, or PEAR_Error on error.
*/
function signMIMEPart($mime_part, $params = array())
{
include_once 'Horde/MIME/Part.php';
$params = array_merge($params, array('type' => 'signature', 'sigtype' => 'detach'));
/* RFC 2015 Requirements for a PGP signed message:
* + Content-Type params 'micalg' & 'protocol' are REQUIRED.
* + The digitally signed message MUST be constrained to 7 bits.
* + The MIME headers MUST be a part of the signed data. */
$mime_part->strict7bit(true);
$msg_sign = $this->encrypt($mime_part->toCanonicalString(), $params);
if (is_a($msg_sign, 'PEAR_Error')) {
return $msg_sign;
}
/* Add the PGP signature. */
$pgp_sign = &new MIME_Part('application/pgp-signature', $msg_sign, null, 'inline');
$pgp_sign->setDescription(_("PGP Digital Signature"));
/* Get the algorithim information from the signature. Since we are
* analyzing a signature packet, we need to use the special keyword
* '_SIGNATURE' - see Horde_Crypt_pgp. */
$sig_info = $this->pgpPacketSignature($msg_sign, '_SIGNATURE');
/* Setup the multipart MIME Part. */
$part = &new MIME_Part('multipart/signed');
$part->setContents('This message is in MIME format and has been PGP signed.' . "\n");
$part->addPart($mime_part);
$part->addPart($pgp_sign);
$part->setContentTypeParameter('protocol', 'application/pgp-signature');
$part->setContentTypeParameter('micalg', $sig_info['micalg']);
return $part;
}
/**
* Encrypts a MIME_Part using PGP.
*
* @param MIME_Part $mime_part The MIME_Part object to encrypt.
* @param array $params The parameters required for encryption.
* @see _encryptMessage().
*
* @return MIME_Part A MIME_Part object that is encrypted according to RFC
* 2015/3156, or PEAR_Error on error.
*/
function encryptMIMEPart($mime_part, $params = array())
{
include_once 'Horde/MIME/Part.php';
$params = array_merge($params, array('type' => 'message'));
$signenc_body = $mime_part->toCanonicalString();
$message_encrypt = $this->encrypt($signenc_body, $params);
if (is_a($message_encrypt, 'PEAR_Error')) {
return $message_encrypt;
}
/* Set up MIME Structure according to RFC 2015. */
$part = &new MIME_Part('multipart/encrypted');
$part->setContents('This message is in MIME format and has been PGP encrypted.' . "\n");
$part->addPart(new MIME_Part('application/pgp-encrypted', "Version: 1\n", null));
$part->addPart(new MIME_Part('application/octet-stream', $message_encrypt, null, 'inline'));
$part->setContentTypeParameter('protocol', 'application/pgp-encrypted');
$part->setDescription(_("PGP Encrypted Data"));
return $part;
}
/**
* Signs and encrypts a MIME_Part using PGP.
*
* @param MIME_Part $mime_part The MIME_Part object to sign and encrypt.
* @param array $sign_params The parameters required for signing.
* @see _encryptSignature().
* @param array $encrypt_params The parameters required for encryption.
* @see _encryptMessage().
*
* @return MIME_Part A MIME_Part object that is signed and encrypted
* according to RFC 2015/3156, or PEAR_Error on error.
*/
function signAndEncryptMIMEPart($mime_part, $sign_params = array(),
$encrypt_params = array())
{
include_once 'Horde/MIME/Part.php';
/* RFC 2015 requires that the entire signed message be encrypted. We
* need to explicitly call using Horde_Crypt_pgp:: because we don't
* know whether a subclass has extended these methods. */
$part = $this->signMIMEPart($mime_part, $sign_params);
if (is_a($part, 'PEAR_Error')) {
return $part;
}
$part = $this->encryptMIMEPart($part, $encrypt_params);
if (is_a($part, 'PEAR_Error')) {
return $part;
}
$part->setContents('This message is in MIME format and has been PGP signed and encrypted.' . "\n");
$part->setDescription(_("PGP Signed/Encrypted Data"));
return $part;
}
/**
* Generates a MIME_Part object, in accordance with RFC 2015/3156, that
* contains a public key.
*
* @param string $key The public key.
*
* @return MIME_Part A MIME_Part object that contains the public key.
*/
function publicKeyMIMEPart($key)
{
include_once 'Horde/MIME/Part.php';
$part = &new MIME_Part('application/pgp-keys', $key, NLS::getCharset());
$part->setDescription(_("PGP Public Key"));
return $part;
}
/**
* Function that handles interfacing with the GnuPG binary.
*
* @access private
*
* @param array $options TODO
* @param string $mode TODO
* @param array $input TODO
* @param boolean $output TODO
* @param boolean $stderr TODO
*
* @return stdClass TODO
*/
function _callGpg($options, $mode, $input = array(), $output = false,
$stderr = false)
{
$cmdline = array_merge($this->_gnupg, $options);
$data = &new stdClass;
$data->output = null;
$data->stderr = null;
$data->stdout = null;
/* Create temp files for output. */
if ($output) {
$output_file = $this->_createTempFile('horde-pgp', false);
array_unshift($options, '--output ' . $output_file);
/* Do we need standard error output? */
if ($stderr) {
$stderr_file = $this->_createTempFile('horde-pgp', false);
$options[] = '2> ' . $stderr_file;
}
}
/* Build the command line string now. */
$cmdline = implode(' ', array_merge($this->_gnupg, $options));
if ($mode == 'w') {
$fp = popen($cmdline, 'w');
$win32 = substr(PHP_OS, 0, 3) == 'WIN';
if (!is_array($input)) {
$input = array($input);
}
foreach ($input as $line) {
if ($win32 && (strpos($line, "\x0d\x0a") !== false)) {
$chunks = explode("\x0d\x0a", $line);
foreach ($chunks as $chunk) {
fputs($fp, $chunk . "\n");
}
} else {
fputs($fp, $line . "\n");
}
}
} elseif ($mode == 'r') {
$fp = popen($cmdline, 'r');
while (!feof($fp)) {
$data->stdout .= fgets($fp, 1024);
}
}
pclose($fp);
if ($output) {
$data->output = file_get_contents($output_file);
unlink($output_file);
if ($stderr) {
$data->stderr = file_get_contents($stderr_file);
unlink($stderr_file);
}
}
return $data;
}
}
|