mirror of
https://github.com/danog/tgseclib.git
synced 2024-11-27 12:44:38 +01: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';
|
||||
|
||||
$ext = [];
|
||||
if (extension_loaded('libsodium')) {
|
||||
if (function_exists('\\Sodium\\library_version_major')) {
|
||||
$ext[] = 'libsodium';
|
||||
}
|
||||
|
||||
|
@ -41,7 +41,7 @@ class Unit_Net_SSH2Test extends PhpseclibTestCase
|
||||
$identifier = self::callFunc($this->createSSHMock(), 'generate_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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user