コード例 #1
0
ファイル: SshPublicKey.php プロジェクト: codeaken/sshkey
 public static function fromFile($filename)
 {
     return new SshPublicKey(SshKey::readFile($filename));
 }
コード例 #2
0
ファイル: SshPrivateKey.php プロジェクト: codeaken/sshkey
 public static function fromFile($filename, $password = '')
 {
     return new SshPrivateKey(SshKey::readFile($filename), $password);
 }