home
/
aioutajg
/
test.imgccr.com
/
vendor
/
phpseclib
/
phpseclib
/
phpseclib
/
Crypt
/
Common
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] Formats
N/A
[DIR] Traits
N/A
AsymmetricKey.php
14.80 KB
Rename
Delete
BlockCipher.php
534 bytes
Rename
Delete
PrivateKey.php
696 bytes
Rename
Delete
PublicKey.php
590 bytes
Rename
Delete
StreamCipher.php
1.10 KB
Rename
Delete
SymmetricKey.php
125.98 KB
Rename
Delete
<?php /** * PrivateKey interface * * @author Jim Wigginton <terrafrost@php.net> * @copyright 2009 Jim Wigginton * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link http://phpseclib.sourceforge.net */ namespace phpseclib3\Crypt\Common; /** * PrivateKey interface * * @author Jim Wigginton <terrafrost@php.net> */ interface PrivateKey { public function sign($message); //public function decrypt($ciphertext); public function getPublicKey(); public function toString($type, array $options = []); /** * @param string|false $password * @return mixed */ public function withPassword($password = false); }
Save