| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825 | //---------------------------------------------------------------------------#include <vcl.h>#pragma hdrstop#define PUTTY_DO_GLOBALS#include "PuttyIntf.h"#include "Interface.h"#include "SecureShell.h"#include "Exceptions.h"#include "CoreMain.h"#include "TextsCore.h"#include <StrUtils.hpp>//---------------------------------------------------------------------------char sshver[50];extern const char commitid[] = "";const int platform_uses_x11_unix_by_default = TRUE;CRITICAL_SECTION putty_section;bool SaveRandomSeed;char appname_[50];const char *const appname = appname_;extern const int share_can_be_downstream = FALSE;extern const int share_can_be_upstream = FALSE;//---------------------------------------------------------------------------extern "C"{#include <winstuff.h>}const UnicodeString OriginalPuttyRegistryStorageKey(_T(PUTTY_REG_POS));const UnicodeString KittyRegistryStorageKey(L"Software\\9bis.com\\KiTTY");const UnicodeString OriginalPuttyExecutable("putty.exe");const UnicodeString KittyExecutable("kitty.exe");//---------------------------------------------------------------------------void __fastcall PuttyInitialize(){  SaveRandomSeed = true;  InitializeCriticalSection(&putty_section);  // make sure random generator is initialised, so random_save_seed()  // in destructor can proceed  random_ref();  flags = FLAG_VERBOSE | FLAG_SYNCAGENT; // verbose log  sk_init();  AnsiString VersionString = AnsiString(SshVersionString());  DebugAssert(!VersionString.IsEmpty() && (static_cast<size_t>(VersionString.Length()) < LENOF(sshver)));  strcpy(sshver, VersionString.c_str());  AnsiString AppName = AnsiString(AppNameString());  DebugAssert(!AppName.IsEmpty() && (static_cast<size_t>(AppName.Length()) < LENOF(appname_)));  strcpy(appname_, AppName.c_str());}//---------------------------------------------------------------------------void __fastcall PuttyFinalize(){  if (SaveRandomSeed)  {    random_save_seed();  }  random_unref();  sk_cleanup();  win_misc_cleanup();  win_secur_cleanup();  ec_cleanup();  DeleteCriticalSection(&putty_section);}//---------------------------------------------------------------------------void __fastcall DontSaveRandomSeed(){  SaveRandomSeed = false;}//---------------------------------------------------------------------------extern "C" char * do_select(Plug plug, SOCKET skt, int startup){  void * frontend;  if (!is_ssh(plug) && !is_pfwd(plug))  {    // If it is not SSH/PFwd plug, then it must be Proxy plug.    // Get SSH/PFwd plug which it wraps.    Proxy_Socket ProxySocket = ((Proxy_Plug)plug)->proxy_socket;    plug = ProxySocket->plug;  }  bool pfwd = is_pfwd(plug);  if (pfwd)  {    plug = (Plug)get_pfwd_backend(plug);  }  frontend = get_ssh_frontend(plug);  DebugAssert(frontend);  TSecureShell * SecureShell = reinterpret_cast<TSecureShell*>(frontend);  if (!pfwd)  {    SecureShell->UpdateSocket(skt, startup);  }  else  {    SecureShell->UpdatePortFwdSocket(skt, startup);  }  return NULL;}//---------------------------------------------------------------------------int from_backend(void * frontend, int is_stderr, const char * data, int datalen){  DebugAssert(frontend);  if (is_stderr >= 0)  {    DebugAssert((is_stderr == 0) || (is_stderr == 1));    ((TSecureShell *)frontend)->FromBackend((is_stderr == 1), reinterpret_cast<const unsigned char *>(data), datalen);  }  else  {    DebugAssert(is_stderr == -1);    ((TSecureShell *)frontend)->CWrite(data, datalen);  }  return 0;}//---------------------------------------------------------------------------int from_backend_untrusted(void * /*frontend*/, const char * /*data*/, int /*len*/){  // currently used with authentication banner only,  // for which we have own interface display_banner  return 0;}//---------------------------------------------------------------------------int from_backend_eof(void * /*frontend*/){  return FALSE;}//---------------------------------------------------------------------------int get_userpass_input(prompts_t * p, const unsigned char * /*in*/, int /*inlen*/){  DebugAssert(p != NULL);  TSecureShell * SecureShell = reinterpret_cast<TSecureShell *>(p->frontend);  DebugAssert(SecureShell != NULL);  int Result;  TStrings * Prompts = new TStringList();  TStrings * Results = new TStringList();  try  {    UnicodeString Name = UTF8ToString(p->name);    UnicodeString AName = Name;    TPromptKind PromptKind = SecureShell->IdentifyPromptKind(AName);    bool UTF8Prompt = (PromptKind != pkPassphrase);    for (int Index = 0; Index < int(p->n_prompts); Index++)    {      prompt_t * Prompt = p->prompts[Index];      UnicodeString S;      if (UTF8Prompt)      {        S = UTF8ToString(Prompt->prompt);      }      else      {        S = UnicodeString(AnsiString(Prompt->prompt));      }      Prompts->AddObject(S, (TObject *)(FLAGMASK(Prompt->echo, pupEcho)));      // this fails, when new passwords do not match on change password prompt,      // and putty retries the prompt      DebugAssert(Prompt->resultsize == 0);      Results->Add(L"");    }    UnicodeString Instructions = UTF8ToString(p->instruction);    if (SecureShell->PromptUser(p->to_server, Name, p->name_reqd,          Instructions, p->instr_reqd, Prompts, Results))    {      for (int Index = 0; Index < int(p->n_prompts); Index++)      {        prompt_t * Prompt = p->prompts[Index];        RawByteString S;        if (UTF8Prompt)        {          S = RawByteString(UTF8String(Results->Strings[Index]));        }        else        {          S = RawByteString(AnsiString(Results->Strings[Index]));        }        prompt_set_result(Prompt, S.c_str());      }      Result = 1;    }    else    {      Result = 0;    }  }  __finally  {    delete Prompts;    delete Results;  }  return Result;}//---------------------------------------------------------------------------char * get_ttymode(void * /*frontend*/, const char * /*mode*/){  // should never happen when Config.nopty == TRUE  DebugFail();  return NULL;}//---------------------------------------------------------------------------void logevent(void * frontend, const char * string){  // Frontend maybe NULL here  if (frontend != NULL)  {    ((TSecureShell *)frontend)->PuttyLogEvent(string);  }}//---------------------------------------------------------------------------void connection_fatal(void * frontend, const char * fmt, ...){  va_list Param;  char Buf[200];  va_start(Param, fmt);  vsnprintf(Buf, LENOF(Buf), fmt, Param); \  Buf[LENOF(Buf) - 1] = '\0'; \  va_end(Param);  DebugAssert(frontend != NULL);  ((TSecureShell *)frontend)->PuttyFatalError(Buf);}//---------------------------------------------------------------------------int verify_ssh_host_key(void * frontend, char * host, int port, const char * keytype,  char * keystr, char * fingerprint, void (*/*callback*/)(void * ctx, int result),  void * /*ctx*/){  DebugAssert(frontend != NULL);  static_cast<TSecureShell *>(frontend)->VerifyHostKey(host, port, keytype, keystr, fingerprint);  // We should return 0 when key was not confirmed, we throw exception instead.  return 1;}//---------------------------------------------------------------------------int have_ssh_host_key(void * frontend, const char * hostname, int port,  const char * keytype){  DebugAssert(frontend != NULL);  return static_cast<TSecureShell *>(frontend)->HaveHostKey(hostname, port, keytype) ? 1 : 0;}//---------------------------------------------------------------------------int askalg(void * frontend, const char * algtype, const char * algname,  void (*/*callback*/)(void * ctx, int result), void * /*ctx*/){  DebugAssert(frontend != NULL);  ((TSecureShell *)frontend)->AskAlg(algtype, algname);  // We should return 0 when alg was not confirmed, we throw exception instead.  return 1;}//---------------------------------------------------------------------------int askhk(void * /*frontend*/, const char * /*algname*/, const char * /*betteralgs*/,  void (*/*callback*/)(void *ctx, int result), void * /*ctx*/){  return 1;}//---------------------------------------------------------------------------void old_keyfile_warning(void){  // no reference to TSecureShell instance available}//---------------------------------------------------------------------------void display_banner(void * frontend, const char * banner, int size){  DebugAssert(frontend);  UnicodeString Banner(UTF8String(banner, size));  ((TSecureShell *)frontend)->DisplayBanner(Banner);}//---------------------------------------------------------------------------static void SSHFatalError(const char * Format, va_list Param){  char Buf[200];  vsnprintf(Buf, LENOF(Buf), Format, Param);  Buf[LENOF(Buf) - 1] = '\0';  // Only few calls from putty\winnet.c might be connected with specific  // TSecureShell. Otherwise called only for really fatal errors  // like 'out of memory' from putty\ssh.c.  throw ESshFatal(NULL, Buf);}//---------------------------------------------------------------------------void fatalbox(const char * fmt, ...){  va_list Param;  va_start(Param, fmt);  SSHFatalError(fmt, Param);  va_end(Param);}//---------------------------------------------------------------------------void modalfatalbox(const char * fmt, ...){  va_list Param;  va_start(Param, fmt);  SSHFatalError(fmt, Param);  va_end(Param);}//---------------------------------------------------------------------------void nonfatal(const char * fmt, ...){  va_list Param;  va_start(Param, fmt);  SSHFatalError(fmt, Param);  va_end(Param);}//---------------------------------------------------------------------------void cleanup_exit(int /*code*/){  throw ESshFatal(NULL, "");}//---------------------------------------------------------------------------int askappend(void * /*frontend*/, Filename * /*filename*/,  void (*/*callback*/)(void * ctx, int result), void * /*ctx*/){  // this is called from logging.c of putty, which is never used with WinSCP  DebugFail();  return 0;}//---------------------------------------------------------------------------void ldisc_echoedit_update(void * /*handle*/){  DebugFail();}//---------------------------------------------------------------------------void agent_schedule_callback(void (* /*callback*/)(void *, void *, int),  void * /*callback_ctx*/, void * /*data*/, int /*len*/){  DebugFail();}//---------------------------------------------------------------------------void notify_remote_exit(void * /*frontend*/){  // nothing}//---------------------------------------------------------------------------void update_specials_menu(void * /*frontend*/){  // nothing}//---------------------------------------------------------------------------unsigned long schedule_timer(int ticks, timer_fn_t /*fn*/, void * /*ctx*/){  return ticks + GetTickCount();}//---------------------------------------------------------------------------void expire_timer_context(void * /*ctx*/){  // nothing}//---------------------------------------------------------------------------Pinger pinger_new(Conf * /*conf*/, Backend * /*back*/, void * /*backhandle*/){  return NULL;}//---------------------------------------------------------------------------void pinger_reconfig(Pinger /*pinger*/, Conf * /*oldconf*/, Conf * /*newconf*/){  // nothing}//---------------------------------------------------------------------------void pinger_free(Pinger /*pinger*/){  // nothing}//---------------------------------------------------------------------------void set_busy_status(void * /*frontend*/, int /*status*/){  // nothing}//---------------------------------------------------------------------------void platform_get_x11_auth(struct X11Display * /*display*/, Conf * /*conf*/){  // nothing, therefore no auth.}//---------------------------------------------------------------------------// Based on PuTTY's settings.cchar * get_remote_username(Conf * conf){  char * username = conf_get_str(conf, CONF_username);  char * result;  if (*username)  {    result = dupstr(username);  }  else  {    result = NULL;  }  return result;}//---------------------------------------------------------------------------static long OpenWinSCPKey(HKEY Key, const char * SubKey, HKEY * Result, bool CanCreate){  long R;  DebugAssert(Configuration != NULL);  DebugAssert(Key == HKEY_CURRENT_USER);  DebugUsedParam(Key);  UnicodeString RegKey = SubKey;  int PuttyKeyLen = OriginalPuttyRegistryStorageKey.Length();  DebugAssert(RegKey.SubString(1, PuttyKeyLen) == OriginalPuttyRegistryStorageKey);  RegKey = RegKey.SubString(PuttyKeyLen + 1, RegKey.Length() - PuttyKeyLen);  if (!RegKey.IsEmpty())  {    DebugAssert(RegKey[1] == L'\\');    RegKey.Delete(1, 1);  }  if (RegKey.IsEmpty())  {    *Result = static_cast<HKEY>(NULL);    R = ERROR_SUCCESS;  }  else  {    // we expect this to be called only from verify_host_key() or store_host_key()    DebugAssert(RegKey == L"SshHostKeys");    THierarchicalStorage * Storage = Configuration->CreateConfigStorage();    Storage->AccessMode = (CanCreate ? smReadWrite : smRead);    if (Storage->OpenSubKey(RegKey, CanCreate))    {      *Result = reinterpret_cast<HKEY>(Storage);      R = ERROR_SUCCESS;    }    else    {      delete Storage;      R = ERROR_CANTOPEN;    }  }  return R;}//---------------------------------------------------------------------------long reg_open_winscp_key(HKEY Key, const char * SubKey, HKEY * Result){  return OpenWinSCPKey(Key, SubKey, Result, false);}//---------------------------------------------------------------------------long reg_create_winscp_key(HKEY Key, const char * SubKey, HKEY * Result){  return OpenWinSCPKey(Key, SubKey, Result, true);}//---------------------------------------------------------------------------long reg_query_winscp_value_ex(HKEY Key, const char * ValueName, unsigned long * /*Reserved*/,  unsigned long * Type, unsigned char * Data, unsigned long * DataSize){  long R;  DebugAssert(Configuration != NULL);  THierarchicalStorage * Storage = reinterpret_cast<THierarchicalStorage *>(Key);  AnsiString Value;  if (Storage == NULL)  {    if (UnicodeString(ValueName) == L"RandSeedFile")    {      Value = AnsiString(Configuration->RandomSeedFileName);      R = ERROR_SUCCESS;    }    else    {      DebugFail();      R = ERROR_READ_FAULT;    }  }  else  {    if (Storage->ValueExists(ValueName))    {      Value = AnsiString(Storage->ReadStringRaw(ValueName, L""));      R = ERROR_SUCCESS;    }    else    {      R = ERROR_READ_FAULT;    }  }  if (R == ERROR_SUCCESS)  {    DebugAssert(Type != NULL);    *Type = REG_SZ;    char * DataStr = reinterpret_cast<char *>(Data);    strncpy(DataStr, Value.c_str(), *DataSize);    DataStr[*DataSize - 1] = '\0';    *DataSize = strlen(DataStr);  }  return R;}//---------------------------------------------------------------------------long reg_set_winscp_value_ex(HKEY Key, const char * ValueName, unsigned long /*Reserved*/,  unsigned long Type, const unsigned char * Data, unsigned long DataSize){  DebugAssert(Configuration != NULL);  DebugAssert(Type == REG_SZ);  DebugUsedParam(Type);  THierarchicalStorage * Storage = reinterpret_cast<THierarchicalStorage *>(Key);  DebugAssert(Storage != NULL);  if (Storage != NULL)  {    UnicodeString Value(reinterpret_cast<const char*>(Data), DataSize - 1);    Storage->WriteStringRaw(ValueName, Value);  }  return ERROR_SUCCESS;}//---------------------------------------------------------------------------long reg_close_winscp_key(HKEY Key){  DebugAssert(Configuration != NULL);  THierarchicalStorage * Storage = reinterpret_cast<THierarchicalStorage *>(Key);  if (Storage != NULL)  {    delete Storage;  }  return ERROR_SUCCESS;}//---------------------------------------------------------------------------TKeyType KeyType(UnicodeString FileName){  DebugAssert(ktUnopenable == SSH_KEYTYPE_UNOPENABLE);  DebugAssert(ktSSHCom == SSH_KEYTYPE_SSHCOM);  DebugAssert(ktSSH2PublicOpenSSH == SSH_KEYTYPE_SSH2_PUBLIC_OPENSSH);  UTF8String UtfFileName = UTF8String(FileName);  Filename * KeyFile = filename_from_str(UtfFileName.c_str());  TKeyType Result = (TKeyType)key_type(KeyFile);  filename_free(KeyFile);  return Result;}//---------------------------------------------------------------------------bool IsKeyEncrypted(TKeyType KeyType, const UnicodeString & FileName, UnicodeString & Comment){  UTF8String UtfFileName = UTF8String(FileName);  Filename * KeyFile = filename_from_str(UtfFileName.c_str());  bool Result;  char * CommentStr = NULL;  switch (KeyType)  {    case ktSSH2:      Result = (ssh2_userkey_encrypted(KeyFile, &CommentStr) != 0);      break;    case ktOpenSSHPEM:    case ktOpenSSHNew:    case ktSSHCom:      Result = (import_encrypted(KeyFile, KeyType, &CommentStr) != NULL);      break;    default:      DebugFail();      Result = false;      break;  }  if (CommentStr != NULL)  {    Comment = UnicodeString(AnsiString(CommentStr));    // ktOpenSSH has no comment, PuTTY defaults to file path    if (Comment == FileName)    {      Comment = ExtractFileName(FileName);    }    sfree(CommentStr);  }  return Result;}//---------------------------------------------------------------------------TPrivateKey * LoadKey(TKeyType KeyType, const UnicodeString & FileName, const UnicodeString & Passphrase){  UTF8String UtfFileName = UTF8String(FileName);  Filename * KeyFile = filename_from_str(UtfFileName.c_str());  AnsiString AnsiPassphrase = Passphrase;  struct ssh2_userkey * Ssh2Key = NULL;  const char * ErrorStr = NULL;  switch (KeyType)  {    case ktSSH2:      Ssh2Key = ssh2_load_userkey(KeyFile, AnsiPassphrase.c_str(), &ErrorStr);      break;    case ktOpenSSHPEM:    case ktOpenSSHNew:    case ktSSHCom:      Ssh2Key = import_ssh2(KeyFile, KeyType, AnsiPassphrase.c_str(), &ErrorStr);      break;    default:      DebugFail();      break;  }  Shred(AnsiPassphrase);  if (Ssh2Key == NULL)  {    UnicodeString Error = AnsiString(ErrorStr);    // While theoretically we may get "unable to open key file" and    // so we should check system error code,    // we actully never get here unless we call KeyType previously    // and handle ktUnopenable accordingly.    throw Exception(Error);  }  else if (Ssh2Key == SSH2_WRONG_PASSPHRASE)  {    throw Exception(LoadStr(AUTH_TRANSL_WRONG_PASSPHRASE));  }  return reinterpret_cast<TPrivateKey *>(Ssh2Key);}//---------------------------------------------------------------------------void ChangeKeyComment(TPrivateKey * PrivateKey, const UnicodeString & Comment){  AnsiString AnsiComment(Comment);  struct ssh2_userkey * Ssh2Key = reinterpret_cast<struct ssh2_userkey *>(PrivateKey);  sfree(Ssh2Key->comment);  Ssh2Key->comment = dupstr(AnsiComment.c_str());}//---------------------------------------------------------------------------void SaveKey(TKeyType KeyType, const UnicodeString & FileName,  const UnicodeString & Passphrase, TPrivateKey * PrivateKey){  UTF8String UtfFileName = UTF8String(FileName);  Filename * KeyFile = filename_from_str(UtfFileName.c_str());  struct ssh2_userkey * Ssh2Key = reinterpret_cast<struct ssh2_userkey *>(PrivateKey);  AnsiString AnsiPassphrase = Passphrase;  char * PassphrasePtr = (AnsiPassphrase.IsEmpty() ? NULL : AnsiPassphrase.c_str());  switch (KeyType)  {    case ktSSH2:      if (!ssh2_save_userkey(KeyFile, Ssh2Key, PassphrasePtr))      {        int Error = errno;        throw EOSExtException(FMTLOAD(KEY_SAVE_ERROR, (FileName)), Error);      }      break;    default:      DebugFail();      break;  }}//---------------------------------------------------------------------------void FreeKey(TPrivateKey * PrivateKey){  struct ssh2_userkey * Ssh2Key = reinterpret_cast<struct ssh2_userkey *>(PrivateKey);  Ssh2Key->alg->freekey(Ssh2Key->data);  sfree(Ssh2Key);}//---------------------------------------------------------------------------bool __fastcall HasGSSAPI(UnicodeString CustomPath){  static int has = -1;  if (has < 0)  {    Conf * conf = conf_new();    ssh_gss_liblist * List = NULL;    try    {      Filename * filename = filename_from_str(UTF8String(CustomPath).c_str());      conf_set_filename(conf, CONF_ssh_gss_custom, filename);      filename_free(filename);      List = ssh_gss_setup(conf);      for (int Index = 0; (has <= 0) && (Index < List->nlibraries); Index++)      {        ssh_gss_library * library = &List->libraries[Index];        Ssh_gss_ctx ctx;        memset(&ctx, 0, sizeof(ctx));        has =          ((library->acquire_cred(library, &ctx) == SSH_GSS_OK) &&           (library->release_cred(library, &ctx) == SSH_GSS_OK)) ? 1 : 0;      }    }    __finally    {      ssh_gss_cleanup(List);      conf_free(conf);    }    if (has < 0)    {      has = 0;    }  }  return (has > 0);}//---------------------------------------------------------------------------static void __fastcall DoNormalizeFingerprint(UnicodeString & Fingerprint, UnicodeString & KeyType){  const wchar_t NormalizedSeparator = L'-';  const int MaxCount = 10;  const ssh_signkey * SignKeys[MaxCount];  int Count = LENOF(SignKeys);  // We may use find_pubkey_alg, but it gets complicated with normalized fingerprint  // as the names have different number of dashes  get_hostkey_algs(&Count, SignKeys);  for (int Index = 0; Index < Count; Index++)  {    const ssh_signkey * SignKey = SignKeys[Index];    UnicodeString Name = UnicodeString(SignKey->name);    if (StartsStr(Name + L" ", Fingerprint))    {      int LenStart = Name.Length() + 1;      Fingerprint[LenStart] = NormalizedSeparator;      int Space = Fingerprint.Pos(L" ");      // If not a number, it's an invalid input,      // either something completelly wrong, or it can be OpenSSH base64 public key,      // that got here from TPasteKeyHandler::Paste      if (IsNumber(Fingerprint.SubString(LenStart + 1, Space - LenStart - 1)))      {        Fingerprint.Delete(LenStart + 1, Space - LenStart);        Fingerprint = ReplaceChar(Fingerprint, L':', NormalizedSeparator);        KeyType = UnicodeString(SignKey->keytype);        return;      }    }    else if (StartsStr(Name + NormalizedSeparator, Fingerprint))    {      KeyType = UnicodeString(SignKey->keytype);      return;    }  }}//---------------------------------------------------------------------------UnicodeString __fastcall NormalizeFingerprint(UnicodeString Fingerprint){  UnicodeString KeyType; // unused  DoNormalizeFingerprint(Fingerprint, KeyType);  return Fingerprint;}//---------------------------------------------------------------------------UnicodeString __fastcall KeyTypeFromFingerprint(UnicodeString Fingerprint){  UnicodeString KeyType;  DoNormalizeFingerprint(Fingerprint, KeyType);  return KeyType;}//---------------------------------------------------------------------------UnicodeString __fastcall GetPuTTYVersion(){  // "Release 0.64"  // "Pre-release 0.65:2015-07-20.95501a1"  // "Development snapshot 2015-12-22.51465fa"  UnicodeString Result = get_putty_version();  // Skip "Release", "Pre-release", "Development snapshot"  int P = Result.LastDelimiter(L" ");  Result.Delete(1, P);  return Result;}//---------------------------------------------------------------------------UnicodeString __fastcall Sha256(const char * Data, size_t Size){  unsigned char Digest[32];  SHA256_Simple(Data, Size, Digest);  UnicodeString Result(BytesToHex(Digest, LENOF(Digest)));  return Result;}//---------------------------------------------------------------------------void __fastcall DllHijackingProtection(){  dll_hijacking_protection();}//---------------------------------------------------------------------------UnicodeString __fastcall ParseOpenSshPubLine(const UnicodeString & Line, const struct ssh_signkey *& Algorithm){  UTF8String UtfLine = UTF8String(Line);  char * AlgorithmName = NULL;  int PubBlobLen = 0;  char * CommentPtr = NULL;  const char * ErrorStr = NULL;  unsigned char * PubBlob = openssh_loadpub_line(UtfLine.c_str(), &AlgorithmName, &PubBlobLen, &CommentPtr, &ErrorStr);  UnicodeString Result;  if (PubBlob == NULL)  {    throw Exception(UnicodeString(ErrorStr));  }  else  {    try    {      Algorithm = find_pubkey_alg(AlgorithmName);      if (Algorithm == NULL)      {        throw Exception(FORMAT(L"Unknown public key algorithm \"%s\".", (AlgorithmName)));      }      void * Key = Algorithm->newkey(Algorithm, reinterpret_cast<const char*>(PubBlob), PubBlobLen);      if (Key == NULL)      {        throw Exception(L"Invalid public key.");      }      char * FmtKey = Algorithm->fmtkey(Key);      Result = UnicodeString(FmtKey);      sfree(FmtKey);      Algorithm->freekey(Key);    }    __finally    {      sfree(PubBlob);      sfree(AlgorithmName);      sfree(CommentPtr);    }  }  return Result;}//---------------------------------------------------------------------------//---------------------------------------------------------------------------
 |