0
|
1 <?php
|
|
2
|
|
3 /**
|
|
4 * This is the unit test configuration file for Crypt_GPG
|
|
5 *
|
|
6 * This configuration allows key generation tests to be enabled. The key
|
|
7 * generation tests are disabled by default as they require true random numbers
|
|
8 * can can take a long time to run.
|
|
9 *
|
|
10 * @category Encryption
|
|
11 * @package Crypt_GPG
|
|
12 * @author Michael Gauthier <mike@silverorange.com>
|
|
13 * @copyright 2011 silverorange
|
|
14 * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
|
15 * @version CVS: $Id:$
|
|
16 * @link http://pear.php.net/package/Crypt_GPG
|
|
17 */
|
|
18
|
|
19 $GLOBALS['Crypt_GPG_Unittest_Config'] = array(
|
|
20 'enable-key-generation' => false,
|
|
21 );
|
|
22
|
|
23 ?>
|