pssht
latest
SSH server library written in PHP
Main Page
Classes
Files
File List
AES256GCM.php
1
<?php
2
3
/*
4
* This file is part of pssht.
5
*
6
* (c) François Poirotte <clicky@erebot.net>
7
*
8
* For the full copyright and license information, please view the LICENSE
9
* file that was distributed with this source code.
10
*/
11
12
namespace
fpoirotte\Pssht\Encryption\OpensshCom
;
13
17
class
AES256GCM
extends
\fpoirotte\Pssht\Encryption\OpensshCom\AES128GCM
18
{
19
public
static
function
getName
()
20
{
21
return
'aes256-gcm@openssh.com'
;
22
}
23
24
public
static
function
getKeySize
()
25
{
26
return
256 >> 3;
27
}
28
}
fpoirotte\Pssht\Encryption\OpensshCom\AES256GCM
Definition:
AES256GCM.php:17
fpoirotte\Pssht\Encryption\OpensshCom
Definition:
AES128GCM.php:12
fpoirotte\Pssht\Encryption\OpensshCom\AES256GCM\getName
static getName()
Return the name of the algorithm.
Definition:
AES256GCM.php:19
fpoirotte\Pssht\Encryption\OpensshCom\AES128GCM
Definition:
AES128GCM.php:17
fpoirotte\Pssht\Encryption\OpensshCom\AES256GCM\getKeySize
static getKeySize()
Definition:
AES256GCM.php:24
src
Encryption
OpensshCom
AES256GCM.php
Generated on Tue May 9 2017 12:09:55 for pssht by
1.8.11