equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Crypt |
16 * @package Zend_Crypt |
17 * @subpackage DiffieHellman |
17 * @subpackage DiffieHellman |
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: DiffieHellman.php 22662 2010-07-24 17:37:36Z mabe $ |
20 * @version $Id: DiffieHellman.php 24593 2012-01-05 20:35:02Z matthew $ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * PHP implementation of the Diffie-Hellman public key encryption algorithm. |
24 * PHP implementation of the Diffie-Hellman public key encryption algorithm. |
25 * Allows two unassociated parties to establish a joint shared secret key |
25 * Allows two unassociated parties to establish a joint shared secret key |
26 * to be used in encrypting subsequent communications. |
26 * to be used in encrypting subsequent communications. |
27 * |
27 * |
28 * @category Zend |
28 * @category Zend |
29 * @package Zend_Crypt |
29 * @package Zend_Crypt |
30 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
30 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
31 * @license http://framework.zend.com/license/new-bsd New BSD License |
31 * @license http://framework.zend.com/license/new-bsd New BSD License |
32 */ |
32 */ |
33 class Zend_Crypt_DiffieHellman |
33 class Zend_Crypt_DiffieHellman |
34 { |
34 { |
35 |
35 |