Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.157.139
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
symfony /
mime /
Crypto /
Delete
Unzip
Name
Size
Permission
Date
Action
DkimOptions.php
1.75
KB
-rw-r--r--
2021-02-02 06:10
DkimSigner.php
7.69
KB
-rw-r--r--
2021-02-02 06:10
SMime.php
3.19
KB
-rw-r--r--
2021-02-02 06:10
SMimeEncrypter.php
2.16
KB
-rw-r--r--
2021-02-02 06:10
SMimeSigner.php
2.63
KB
-rw-r--r--
2021-02-02 06:10
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mime\Crypto; /** * A helper providing autocompletion for available DkimSigner options. * * @author Fabien Potencier <fabien@symfony.com> */ final class DkimOptions { private $options = []; public function toArray(): array { return $this->options; } /** * @return $this */ public function algorithm(int $algo): self { $this->options['algorithm'] = $algo; return $this; } /** * @return $this */ public function signatureExpirationDelay(int $show): self { $this->options['signature_expiration_delay'] = $show; return $this; } /** * @return $this */ public function bodyMaxLength(int $max): self { $this->options['body_max_length'] = $max; return $this; } /** * @return $this */ public function bodyShowLength(bool $show): self { $this->options['body_show_length'] = $show; return $this; } /** * @return $this */ public function headerCanon(string $canon): self { $this->options['header_canon'] = $canon; return $this; } /** * @return $this */ public function bodyCanon(string $canon): self { $this->options['body_canon'] = $canon; return $this; } /** * @return $this */ public function headersToIgnore(array $headers): self { $this->options['headers_to_ignore'] = $headers; return $this; } }