Subversion Repositories oidplus

Rev

Rev 846 | Rev 1042 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 846 Rev 874
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
/**
3
/**
4
 * DH Public Key
4
 * DH Public Key
5
 *
5
 *
-
 
6
 * @category  Crypt
-
 
7
 * @package   DH
6
 * @author    Jim Wigginton <terrafrost@php.net>
8
 * @author    Jim Wigginton <terrafrost@php.net>
7
 * @copyright 2015 Jim Wigginton
9
 * @copyright 2015 Jim Wigginton
8
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
10
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
9
 * @link      http://phpseclib.sourceforge.net
11
 * @link      http://phpseclib.sourceforge.net
10
 */
12
 */
Line 15... Line 17...
15
use phpseclib3\Crypt\DH;
17
use phpseclib3\Crypt\DH;
16
 
18
 
17
/**
19
/**
18
 * DH Public Key
20
 * DH Public Key
19
 *
21
 *
-
 
22
 * @package DH
20
 * @author  Jim Wigginton <terrafrost@php.net>
23
 * @author  Jim Wigginton <terrafrost@php.net>
-
 
24
 * @access  public
21
 */
25
 */
22
class PublicKey extends DH
26
class PublicKey extends DH
23
{
27
{
24
    use Common\Traits\Fingerprint;
28
    use Common\Traits\Fingerprint;
25
 
29