mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Core/SSH: Authentication methods list parsing is fixed.
git-svn-id: svn://ultimatepp.org/upp/trunk@13660 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
662659ee7f
commit
85aa5a8fd4
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ public:
|
|||
String GetMD5Fingerprint() const { return GetHostKeyHash(LIBSSH2_HOSTKEY_HASH_MD5, 16); }
|
||||
String GetSHA1Fingerprint() const { return GetHostKeyHash(LIBSSH2_HOSTKEY_HASH_SHA1, 20); }
|
||||
String GetSHA256Fingerprint() const { return GetHostKeyHash(LIBSSH2_HOSTKEY_HASH_SHA256, 32); }
|
||||
Vector<String> GetAuthMethods() { return pick(Split(session->authmethods, ' ')); }
|
||||
Vector<String> GetAuthMethods() { return pick(Split(session->authmethods, ',')); }
|
||||
TcpSocket& GetSocket() { return session->socket; }
|
||||
ValueMap GetMethods() const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue