Crypt/DiffieHellman.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Crypt  
Subpackage
DiffieHellman  
Version
$Id$  

\Zend_Crypt_DiffieHellman

Package: Zend_Crypt
PHP implementation of the Diffie-Hellman public key encryption algorithm.
Allows two unassociated parties to establish a joint shared secret key to be used in encrypting subsequent communications.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Constants

>VConstant  BINARY = 'binary'
Constants
>VConstant  NUMBER = 'number'
>VConstant  BTWOC = 'btwoc'

Properties

>VPropertyprivatestring $_generator = null
The default generator number. This number must be greater than 0 but less than the prime number set.
Default valuenullDetails
Type
string
>VPropertyprivate\Zend_Crypt_Math_BigInteger $_math = null
BigInteger support object courtesy of Zend_Crypt_Math
Default valuenullDetails
Type
\Zend_Crypt_Math_BigInteger
>VPropertyprivatestring $_prime = null
Default large prime number; required by the algorithm.
Default valuenullDetails
Type
string
>VPropertyprivatestring $_privateKey = null
A private number set by the local user. It's optional and will be generated if not set.
Default valuenullDetails
Type
string
>VPropertyprivatestring $_publicKey = null
The public key generated by this instance after calling generateKeys().
Default valuenullDetails
Type
string
>VPropertyprivatestring $_secretKey = null
The shared secret key resulting from a completed Diffie Hellman exchange
Default valuenullDetails
Type
string
>VPropertypublicboolean $useOpenssl = true
static
Static flag to select whether to use PHP5.3's openssl extension if available.
Default valuetrueDetails
Type
boolean

Methods

methodpublic__construct(string $prime, string $generator, string $privateKey = null, string $privateKeyType = self::NUMBER) : void

Constructor; if set construct the object using the parameter array to set values for Prime, Generator and Private.

If a Private Key is not set, one will be generated at random.
Parameters
NameTypeDescription
$primestring
$generatorstring
$privateKeystring
$privateKeyTypestring
methodprotected_generatePrivateKey() : string

In the event a private number/key has not been set by the user, or generated by ext/openssl, a best attempt will be made to generate a random key. Having a random number generator installed on linux/bsd is highly recommended! The alternative is not recommended for production unless without any other option.

Returns
TypeDescription
string
methodpubliccomputeSecretKey(string $publicKey, string $type = self::NUMBER,  $output = self::NUMBER) : mixed

Compute the shared secret key based on the public key received from the the second party to this transaction. This should agree to the secret key the second party computes on our own public key.

Once in agreement, the key is known to only to both parties. By default, the function expects the public key to be in binary form which is the typical format when being transmitted. If you need the binary form of the shared secret key, call getSharedSecretKey() with the optional parameter for Binary output.
Parameters
NameTypeDescription
$publicKeystring
$typestring
$output
Returns
TypeDescription
mixed
methodpublicgenerateKeys() : \Zend_Crypt_DiffieHellman

Generate own public key. If a private number has not already been set, one will be generated at this stage.

Returns
TypeDescription
\Zend_Crypt_DiffieHellman
methodpublicgetGenerator() : string

Getter for the value of the generator number

Returns
TypeDescription
string
methodpublicgetPrime() : string

Getter for the value of the prime number

Returns
TypeDescription
string
methodpublicgetPrivateKey(string $type = self::NUMBER) : string

Getter for the value of the private number

Parameters
NameTypeDescription
$typestring
Returns
TypeDescription
string
methodpublicgetPublicKey(string $type = self::NUMBER) : string

Returns own public key for communication to the second party to this transaction.

Parameters
NameTypeDescription
$typestring
Returns
TypeDescription
string
methodpublicgetSharedSecretKey(string $type = self::NUMBER) : string

Return the computed shared secret key from the DiffieHellman transaction

Parameters
NameTypeDescription
$typestring
Returns
TypeDescription
string
methodpublichasPrivateKey() : boolean

Check whether a private key currently exists.

Returns
TypeDescription
boolean
methodpublicsetBigIntegerMath(string $extension = null) : void

Setter to pass an extension parameter which is used to create a specific BigInteger instance for a specific extension type.

Allows manual setting of the class in case of an extension problem or bug.
Parameters
NameTypeDescription
$extensionstring
methodpublicsetGenerator(string $number) : \Zend_Crypt_DiffieHellman

Setter for the value of the generator number

Parameters
NameTypeDescription
$numberstring
Returns
TypeDescription
\Zend_Crypt_DiffieHellman
methodpublicsetPrime(string $number) : \Zend_Crypt_DiffieHellman

Setter for the value of the prime number

Parameters
NameTypeDescription
$numberstring
Returns
TypeDescription
\Zend_Crypt_DiffieHellman
methodpublicsetPrivateKey(string $number, string $type = self::NUMBER) : \Zend_Crypt_DiffieHellman

Setter for the value of the private number

Parameters
NameTypeDescription
$numberstring
$typestring
Returns
TypeDescription
\Zend_Crypt_DiffieHellman
methodpublicsetPublicKey(string $number, string $type = self::NUMBER) : \Zend_Crypt_DiffieHellman

Setter for the value of the public number

Parameters
NameTypeDescription
$numberstring
$typestring
Returns
TypeDescription
\Zend_Crypt_DiffieHellman
Documentation was generated by phpDocumentor 2.2.0 .