1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-04 18:48:24 +01:00

PrivateKey: tweak interface

This commit is contained in:
terrafrost 2021-05-22 10:18:11 -05:00
parent 84f07cc9cb
commit cfe8a24011

View File

@ -26,5 +26,5 @@ interface PrivateKey
//public function decrypt($ciphertext); //public function decrypt($ciphertext);
public function getPublicKey(); public function getPublicKey();
public function toString($type, array $options = []); public function toString($type, array $options = []);
public function withPassword($string); public function withPassword($string = false);
} }