Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
letsencrypt
/
vendor
/
acmephp
/
ssl
/
Generator
/
RsaKey
/
File Content:
RsaKeyOption.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 PleskLetsEncrypt\AcmePhp\Ssl\Generator\RsaKey; use PleskLetsEncrypt\AcmePhp\Ssl\Generator\KeyOption; class RsaKeyOption implements KeyOption { /** @var int */ private $bits; public function __construct(int $bits = 4096) { $this->bits = $bits; } public function getBits() : int { return $this->bits; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
RsaKeyGenerator.php
1243 bytes
0644
RsaKeyOption.php
605 bytes
0644
N4ST4R_ID | Naxtarrr