mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-26 11:37:33 +00:00
Merge branch '2.0'
This commit is contained in:
commit
fc6a97083c
@ -1267,7 +1267,7 @@ class SSH2
|
|||||||
$identifier = 'SSH-2.0-phpseclib_2.0';
|
$identifier = 'SSH-2.0-phpseclib_2.0';
|
||||||
|
|
||||||
$ext = [];
|
$ext = [];
|
||||||
if (extension_loaded('libsodium')) {
|
if (function_exists('\\Sodium\\library_version_major')) {
|
||||||
$ext[] = 'libsodium';
|
$ext[] = 'libsodium';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ class Unit_Net_SSH2Test extends PhpseclibTestCase
|
|||||||
$identifier = self::callFunc($this->createSSHMock(), 'generate_identifier');
|
$identifier = self::callFunc($this->createSSHMock(), 'generate_identifier');
|
||||||
$this->assertStringStartsWith('SSH-2.0-phpseclib_2.0', $identifier);
|
$this->assertStringStartsWith('SSH-2.0-phpseclib_2.0', $identifier);
|
||||||
|
|
||||||
if (extension_loaded('libsodium')) {
|
if (function_exists('\\Sodium\\library_version_major')) {
|
||||||
$this->assertContains('libsodium', $identifier);
|
$this->assertContains('libsodium', $identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user