Notice: No compatible server to client encryption algorithms found in

后端 未结 1 724
南笙
南笙 2021-01-15 10:54

I\'m using PHPSecLib for SSH connection through PHP but I have this error :

Notice: No compatible server to client encryption algorithms found in C:\\Program Files (

相关标签:
1条回答
  • 2021-01-15 11:10

    Quoting this post,

    So phpseclib determines which symmetric key algorithms it can use by seeing which ones are includable. The following links demonstrate how this is done:

    https://github.com/phpseclib/phpseclib/blob/efd3b96dc8e378a5155cb42f4869de85f4153135/phpseclib/Net/SSH2.php#L1110 https://github.com/phpseclib/phpseclib/blob/efd3b96dc8e378a5155cb42f4869de85f4153135/phpseclib/Net/SSH2.php#L3775

    If you're using PHP 5.4 then it's essentially doing stream_resolve_include_path('Crypt/RC4.php'). If PHP doesn't think it's includable than it's hard to argue with that.

    Could be your include_path that's not correctly set as well.

    0 讨论(0)
提交回复
热议问题