| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153 | 
							- //---------------------------------------------------------------------------
 
- #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>
 
- #include <Soap.EncdDecd.hpp>
 
- //---------------------------------------------------------------------------
 
- char sshver[50];
 
- extern const char commitid[] = "";
 
- const bool platform_uses_x11_unix_by_default = true;
 
- CRITICAL_SECTION putty_section;
 
- bool SaveRandomSeed;
 
- bool HadRandomSeed;
 
- char appname_[50];
 
- const char *const appname = appname_;
 
- extern const bool share_can_be_downstream = false;
 
- extern const bool share_can_be_upstream = false;
 
- THierarchicalStorage * PuttyStorage = NULL;
 
- //---------------------------------------------------------------------------
 
- 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");
 
- const UnicodeString PuttyKeyExt(L"ppk");
 
- //---------------------------------------------------------------------------
 
- void __fastcall PuttyInitialize()
 
- {
 
-   SaveRandomSeed = true;
 
-   InitializeCriticalSection(&putty_section);
 
-   HadRandomSeed = FileExists(ApiPath(Configuration->RandomSeedFileName));
 
-   // 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());
 
- }
 
- //---------------------------------------------------------------------------
 
- static bool DeleteRandomSeedOnExit()
 
- {
 
-   return !HadRandomSeed && !SaveRandomSeed;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall PuttyFinalize()
 
- {
 
-   if (SaveRandomSeed)
 
-   {
 
-     random_save_seed();
 
-   }
 
-   random_unref();
 
-   // random_ref in PuttyInitialize creates the seed file. Delete it, if we didn't want to create it.
 
-   if (DeleteRandomSeedOnExit())
 
-   {
 
-     DeleteFile(ApiPath(Configuration->RandomSeedFileName));
 
-   }
 
-   sk_cleanup();
 
-   win_misc_cleanup();
 
-   win_secur_cleanup();
 
-   ec_cleanup();
 
-   DeleteCriticalSection(&putty_section);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall DontSaveRandomSeed()
 
- {
 
-   SaveRandomSeed = false;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool RandomSeedExists()
 
- {
 
-   return
 
-     !DeleteRandomSeedOnExit() &&
 
-     FileExists(ApiPath(Configuration->RandomSeedFileName));
 
- }
 
- //---------------------------------------------------------------------------
 
- TSecureShell * GetSecureShell(Plug * plug, bool & pfwd)
 
- {
 
-   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.
 
-     ProxySocket * AProxySocket = get_proxy_plug_socket(plug);
 
-     plug = AProxySocket->plug;
 
-   }
 
-   pfwd = is_pfwd(plug);
 
-   Seat * seat;
 
-   if (pfwd)
 
-   {
 
-     seat = get_pfwd_seat(plug);
 
-   }
 
-   else
 
-   {
 
-     seat = get_ssh_seat(plug);
 
-   }
 
-   DebugAssert(seat != NULL);
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   return SecureShell;
 
- }
 
- //---------------------------------------------------------------------------
 
- struct callback_set * get_callback_set(Plug * plug)
 
- {
 
-   bool pfwd;
 
-   TSecureShell * SecureShell = GetSecureShell(plug, pfwd);
 
-   return SecureShell->GetCallbackSet();
 
- }
 
- //---------------------------------------------------------------------------
 
- struct callback_set * get_seat_callback_set(Seat * seat)
 
- {
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   return SecureShell->GetCallbackSet();
 
- }
 
- //---------------------------------------------------------------------------
 
- extern "C" char * do_select(Plug * plug, SOCKET skt, bool enable)
 
- {
 
-   bool pfwd;
 
-   TSecureShell * SecureShell = GetSecureShell(plug, pfwd);
 
-   if (!pfwd)
 
-   {
 
-     SecureShell->UpdateSocket(skt, enable);
 
-   }
 
-   else
 
-   {
 
-     SecureShell->UpdatePortFwdSocket(skt, enable);
 
-   }
 
-   return NULL;
 
- }
 
- //---------------------------------------------------------------------------
 
- static size_t output(Seat * seat, bool is_stderr, const void * data, size_t len)
 
- {
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   if (static_cast<int>(static_cast<char>(is_stderr)) == -1)
 
-   {
 
-     SecureShell->CWrite(reinterpret_cast<const char *>(data), len);
 
-   }
 
-   else if (!is_stderr)
 
-   {
 
-     SecureShell->FromBackend(reinterpret_cast<const unsigned char *>(data), len);
 
-   }
 
-   else
 
-   {
 
-     SecureShell->AddStdError(reinterpret_cast<const char *>(data), len);
 
-   }
 
-   return 0;
 
- }
 
- //---------------------------------------------------------------------------
 
- static bool eof(Seat *)
 
- {
 
-   return false;
 
- }
 
- //---------------------------------------------------------------------------
 
- static int get_userpass_input(Seat * seat, prompts_t * p, bufchain * DebugUsedArg(input))
 
- {
 
-   DebugAssert(p != NULL);
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   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(strlen(prompt_get_result_ref(Prompt)) == 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;
 
- }
 
- //---------------------------------------------------------------------------
 
- static void connection_fatal(Seat * seat, const char * message)
 
- {
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   SecureShell->PuttyFatalError(UnicodeString(AnsiString(message)));
 
- }
 
- //---------------------------------------------------------------------------
 
- int verify_ssh_host_key(Seat * seat, const char * host, int port, const char * keytype,
 
-   char * keystr, char * fingerprint, void (*/*callback*/)(void * ctx, int result),
 
-   void * /*ctx*/)
 
- {
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   SecureShell->VerifyHostKey(host, port, keytype, keystr, fingerprint);
 
-   // We should return 0 when key was not confirmed, we throw exception instead.
 
-   return 1;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool have_ssh_host_key(Seat * seat, const char * hostname, int port,
 
-   const char * keytype)
 
- {
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   return SecureShell->HaveHostKey(hostname, port, keytype) ? 1 : 0;
 
- }
 
- //---------------------------------------------------------------------------
 
- int confirm_weak_crypto_primitive(Seat * seat, const char * algtype, const char * algname,
 
-   void (*/*callback*/)(void * ctx, int result), void * /*ctx*/)
 
- {
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   SecureShell->AskAlg(algtype, algname);
 
-   // We should return 0 when alg was not confirmed, we throw exception instead.
 
-   return 1;
 
- }
 
- //---------------------------------------------------------------------------
 
- int confirm_weak_cached_hostkey(Seat *, 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(Seat * seat, const char * banner, int size)
 
- {
 
-   TSecureShell * SecureShell = static_cast<ScpSeat *>(seat)->SecureShell;
 
-   UnicodeString Banner(UTF8String(banner, size));
 
-   SecureShell->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 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 ldisc_echoedit_update(Ldisc * /*handle*/)
 
- {
 
-   DebugFail();
 
- }
 
- //---------------------------------------------------------------------------
 
- 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*/)
 
- {
 
-   return NULL;
 
- }
 
- //---------------------------------------------------------------------------
 
- void pinger_reconfig(Pinger * /*pinger*/, Conf * /*oldconf*/, Conf * /*newconf*/)
 
- {
 
-   // nothing
 
- }
 
- //---------------------------------------------------------------------------
 
- void pinger_free(Pinger * /*pinger*/)
 
- {
 
-   // nothing
 
- }
 
- //---------------------------------------------------------------------------
 
- void platform_get_x11_auth(struct X11Display * /*display*/, Conf * /*conf*/)
 
- {
 
-   // nothing, therefore no auth.
 
- }
 
- //---------------------------------------------------------------------------
 
- // Based on PuTTY's settings.c
 
- char * 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 const SeatVtable ScpSeatVtable =
 
-   {
 
-     output,
 
-     eof,
 
-     get_userpass_input,
 
-     nullseat_notify_remote_exit,
 
-     connection_fatal,
 
-     nullseat_update_specials_menu,
 
-     nullseat_get_ttymode,
 
-     nullseat_set_busy_status,
 
-     verify_ssh_host_key,
 
-     confirm_weak_crypto_primitive,
 
-     confirm_weak_cached_hostkey,
 
-     nullseat_is_always_utf8,
 
-     nullseat_echoedit_update,
 
-     nullseat_get_x_display,
 
-     nullseat_get_windowid,
 
-     nullseat_get_window_pixel_size,
 
-     nullseat_stripctrl_new,
 
-     nullseat_set_trust_status_vacuously
 
-   };
 
- //---------------------------------------------------------------------------
 
- ScpSeat::ScpSeat(TSecureShell * ASecureShell)
 
- {
 
-   SecureShell = ASecureShell;
 
-   vt = &ScpSeatVtable;
 
- }
 
- //---------------------------------------------------------------------------
 
- static std::unique_ptr<TCriticalSection> PuttyRegistrySection(TraceInitPtr(new TCriticalSection()));
 
- enum TPuttyRegistryMode { prmPass, prmRedirect, prmCollect, prmFail };
 
- static TPuttyRegistryMode PuttyRegistryMode = prmRedirect;
 
- typedef std::map<UnicodeString, unsigned long> TPuttyRegistryTypes;
 
- TPuttyRegistryTypes PuttyRegistryTypes;
 
- //---------------------------------------------------------------------------
 
- static long OpenWinSCPKey(HKEY Key, const char * SubKey, HKEY * Result, bool CanCreate)
 
- {
 
-   long R;
 
-   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 retrieve_host_key() or store_host_key()
 
-     DebugAssert(RegKey == L"SshHostKeys");
 
-     DebugAssert(PuttyStorage != NULL);
 
-     DebugAssert(PuttyStorage->AccessMode == (CanCreate ? smReadWrite : smRead));
 
-     if (PuttyStorage->OpenSubKey(RegKey, CanCreate))
 
-     {
 
-       *Result = reinterpret_cast<HKEY>(PuttyStorage);
 
-       R = ERROR_SUCCESS;
 
-     }
 
-     else
 
-     {
 
-       R = ERROR_CANTOPEN;
 
-     }
 
-   }
 
-   return R;
 
- }
 
- //---------------------------------------------------------------------------
 
- long reg_open_winscp_key(HKEY Key, const char * SubKey, HKEY * Result)
 
- {
 
-   if (PuttyRegistryMode == prmPass)
 
-   {
 
-     return RegOpenKeyA(Key, SubKey, Result);
 
-   }
 
-   else if (PuttyRegistryMode == prmCollect)
 
-   {
 
-     *Result = reinterpret_cast<HKEY>(1);
 
-     return ERROR_SUCCESS;
 
-   }
 
-   else if (PuttyRegistryMode == prmFail)
 
-   {
 
-     return ERROR_CANTOPEN;
 
-   }
 
-   DebugAssert(PuttyRegistryMode == prmRedirect);
 
-   return OpenWinSCPKey(Key, SubKey, Result, false);
 
- }
 
- //---------------------------------------------------------------------------
 
- long reg_create_winscp_key(HKEY Key, const char * SubKey, HKEY * Result)
 
- {
 
-   if (PuttyRegistryMode == prmPass)
 
-   {
 
-     return RegCreateKeyA(Key, SubKey, Result);
 
-   }
 
-   else if (PuttyRegistryMode == prmCollect)
 
-   {
 
-     *Result = reinterpret_cast<HKEY>(1);
 
-     return ERROR_SUCCESS;
 
-   }
 
-   DebugAssert(PuttyRegistryMode == prmRedirect);
 
-   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)
 
- {
 
-   if (PuttyRegistryMode == prmPass)
 
-   {
 
-     return RegQueryValueExA(Key, ValueName, Reserved, Type, Data, DataSize);
 
-   }
 
-   else if (PuttyRegistryMode == prmCollect)
 
-   {
 
-     return ERROR_READ_FAULT;
 
-   }
 
-   DebugAssert(PuttyRegistryMode == prmRedirect);
 
-   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)
 
- {
 
-   if (PuttyRegistryMode == prmPass)
 
-   {
 
-     return RegSetValueExA(Key, ValueName, Reserved, Type, Data, DataSize);
 
-   }
 
-   else if (PuttyRegistryMode == prmCollect)
 
-   {
 
-     PuttyRegistryTypes[ValueName] = Type;
 
-     return ERROR_SUCCESS;
 
-   }
 
-   DebugAssert(PuttyRegistryMode == prmRedirect);
 
-   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)
 
- {
 
-   if (PuttyRegistryMode == prmPass)
 
-   {
 
-     return RegCloseKey(Key);
 
-   }
 
-   else if (PuttyRegistryMode == prmCollect)
 
-   {
 
-     return ERROR_SUCCESS;
 
-   }
 
-   DebugAssert(PuttyRegistryMode == prmRedirect);
 
-   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);
 
-   bool Result;
 
-   char * CommentStr = NULL;
 
-   Filename * KeyFile = filename_from_str(UtfFileName.c_str());
 
-   try
 
-   {
 
-     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;
 
-     }
 
-   }
 
-   __finally
 
-   {
 
-     filename_free(KeyFile);
 
-   }
 
-   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());
 
-   struct ssh2_userkey * Ssh2Key = NULL;
 
-   const char * ErrorStr = NULL;
 
-   AnsiString AnsiPassphrase = Passphrase;
 
-   try
 
-   {
 
-     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;
 
-     }
 
-   }
 
-   __finally
 
-   {
 
-     Shred(AnsiPassphrase);
 
-     filename_free(KeyFile);
 
-   }
 
-   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());
 
-   try
 
-   {
 
-     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;
 
-     }
 
-   }
 
-   __finally
 
-   {
 
-     filename_free(KeyFile);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void FreeKey(TPrivateKey * PrivateKey)
 
- {
 
-   struct ssh2_userkey * Ssh2Key = reinterpret_cast<struct ssh2_userkey *>(PrivateKey);
 
-   ssh_key_free(Ssh2Key->key);
 
-   sfree(Ssh2Key);
 
- }
 
- //---------------------------------------------------------------------------
 
- RawByteString LoadPublicKey(const UnicodeString & FileName, UnicodeString & Algorithm, UnicodeString & Comment)
 
- {
 
-   RawByteString Result;
 
-   UTF8String UtfFileName = UTF8String(FileName);
 
-   Filename * KeyFile = filename_from_str(UtfFileName.c_str());
 
-   try
 
-   {
 
-     char * AlgorithmStr = NULL;
 
-     char * CommentStr = NULL;
 
-     const char * ErrorStr = NULL;
 
-     strbuf * PublicKeyBuf = strbuf_new();
 
-     if (!ssh2_userkey_loadpub(KeyFile, &AlgorithmStr, BinarySink_UPCAST(PublicKeyBuf), &CommentStr, &ErrorStr))
 
-     {
 
-       UnicodeString Error = UnicodeString(AnsiString(ErrorStr));
 
-       throw Exception(Error);
 
-     }
 
-     Algorithm = UnicodeString(AnsiString(AlgorithmStr));
 
-     sfree(AlgorithmStr);
 
-     Comment = UnicodeString(AnsiString(CommentStr));
 
-     sfree(CommentStr);
 
-     Result = RawByteString(reinterpret_cast<char *>(PublicKeyBuf->s), PublicKeyBuf->len);
 
-     strbuf_free(PublicKeyBuf);
 
-   }
 
-   __finally
 
-   {
 
-     filename_free(KeyFile);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString GetPublicKeyLine(const UnicodeString & FileName, UnicodeString & Comment)
 
- {
 
-   UnicodeString Algorithm;
 
-   RawByteString PublicKey = LoadPublicKey(FileName, Algorithm, Comment);
 
-   UnicodeString PublicKeyBase64 = EncodeBase64(PublicKey.c_str(), PublicKey.Length());
 
-   PublicKeyBase64 = ReplaceStr(PublicKeyBase64, L"\r", L"");
 
-   PublicKeyBase64 = ReplaceStr(PublicKeyBase64, L"\n", L"");
 
-   UnicodeString Result = FORMAT(L"%s %s %s", (Algorithm, PublicKeyBase64, Comment));
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- 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, NULL);
 
-       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, NULL) == 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 & KeyName, UnicodeString & KeyType)
 
- {
 
-   const int MaxCount = 10;
 
-   const ssh_keyalg * 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_keyalg * SignKey = SignKeys[Index];
 
-     UnicodeString Name = UnicodeString(SignKey->ssh_id);
 
-     if (StartsStr(Name + L" ", Fingerprint))
 
-     {
 
-       UnicodeString Rest = Fingerprint.SubString(Name.Length() + 2, Fingerprint.Length() - Name.Length() - 1);
 
-       int Space = Rest.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(Rest.SubString(1, Space - 1)))
 
-       {
 
-         KeyName = Name;
 
-         Fingerprint = Rest.SubString(Space + 1, Fingerprint.Length() - Space);
 
-         Fingerprint = Base64ToUrlSafe(Fingerprint);
 
-         Fingerprint = MD5ToUrlSafe(Fingerprint);
 
-         KeyType = UnicodeString(SignKey->cache_id);
 
-         return;
 
-       }
 
-     }
 
-     else if (StartsStr(Name + NormalizedFingerprintSeparator, Fingerprint))
 
-     {
 
-       KeyType = UnicodeString(SignKey->cache_id);
 
-       KeyName = Name;
 
-       Fingerprint.Delete(1, Name.Length() + 1);
 
-       return;
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall NormalizeFingerprint(UnicodeString & Fingerprint, UnicodeString & KeyName)
 
- {
 
-   UnicodeString KeyType;
 
-   DoNormalizeFingerprint(Fingerprint, KeyName, KeyType);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall KeyTypeFromFingerprint(UnicodeString Fingerprint)
 
- {
 
-   UnicodeString KeyType;
 
-   UnicodeString KeyName; // unused
 
-   DoNormalizeFingerprint(Fingerprint, KeyName, 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];
 
-   hash_simple(&ssh_sha256, make_ptrlen(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_keyalg *& Algorithm)
 
- {
 
-   UTF8String UtfLine = UTF8String(Line);
 
-   char * AlgorithmName = NULL;
 
-   char * CommentPtr = NULL;
 
-   const char * ErrorStr = NULL;
 
-   strbuf * PubBlobBuf = strbuf_new();
 
-   UnicodeString Result;
 
-   if (!openssh_loadpub_line(UtfLine.c_str(), &AlgorithmName, BinarySink_UPCAST(PubBlobBuf), &CommentPtr, &ErrorStr))
 
-   {
 
-     throw Exception(UnicodeString(ErrorStr));
 
-   }
 
-   else
 
-   {
 
-     try
 
-     {
 
-       Algorithm = find_pubkey_alg(AlgorithmName);
 
-       if (Algorithm == NULL)
 
-       {
 
-         throw Exception(FORMAT(L"Unknown public key algorithm \"%s\".", (AlgorithmName)));
 
-       }
 
-       ptrlen PtrLen = { PubBlobBuf->s, PubBlobBuf->len };
 
-       ssh_key * Key = Algorithm->new_pub(Algorithm, PtrLen);
 
-       if (Key == NULL)
 
-       {
 
-         throw Exception(L"Invalid public key.");
 
-       }
 
-       char * FmtKey = Algorithm->cache_str(Key);
 
-       Result = UnicodeString(FmtKey);
 
-       sfree(FmtKey);
 
-       Algorithm->freekey(Key);
 
-     }
 
-     __finally
 
-     {
 
-       strbuf_free(PubBlobBuf);
 
-       sfree(AlgorithmName);
 
-       sfree(CommentPtr);
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall GetSsh1KeyType()
 
- {
 
-   return UnicodeString(ssh_rsa.cache_id);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall GetKeyTypeHuman(const UnicodeString & KeyType)
 
- {
 
-   UnicodeString Result;
 
-   if (KeyType == ssh_dss.cache_id)
 
-   {
 
-     Result = L"DSA";
 
-   }
 
-   else if ((KeyType == ssh_rsa.cache_id) ||
 
-            (KeyType == L"rsa")) // SSH1
 
-   {
 
-     Result = L"RSA";
 
-   }
 
-   else if (KeyType == ssh_ecdsa_ed25519.cache_id)
 
-   {
 
-     Result = L"Ed25519";
 
-   }
 
-   else if (KeyType == ssh_ecdsa_nistp256.cache_id)
 
-   {
 
-     Result = L"ECDSA/nistp256";
 
-   }
 
-   else if (KeyType == ssh_ecdsa_nistp384.cache_id)
 
-   {
 
-     Result = L"ECDSA/nistp384";
 
-   }
 
-   else if (KeyType == ssh_ecdsa_nistp521.cache_id)
 
-   {
 
-     Result = L"ECDSA/nistp521";
 
-   }
 
-   else
 
-   {
 
-     DebugFail();
 
-     Result = KeyType;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool IsOpenSSH(const UnicodeString & SshImplementation)
 
- {
 
-   return
 
-     // e.g. "OpenSSH_5.3"
 
-     (SshImplementation.Pos(L"OpenSSH") == 1) ||
 
-     // Sun SSH is based on OpenSSH (suffers the same bugs)
 
-     (SshImplementation.Pos(L"Sun_SSH") == 1);
 
- }
 
- //---------------------------------------------------------------------------
 
- TStrings * SshCipherList()
 
- {
 
-   std::unique_ptr<TStrings> Result(new TStringList());
 
-   // Same order as DefaultCipherList
 
-   const ssh2_ciphers * Ciphers[] = { &ssh2_aes, &ssh2_ccp, &ssh2_blowfish, &ssh2_3des, &ssh2_arcfour, &ssh2_des };
 
-   for (unsigned int Index = 0; Index < LENOF(Ciphers); Index++)
 
-   {
 
-     for (int Index2 = 0; Index2 < Ciphers[Index]->nciphers; Index2++)
 
-     {
 
-       UnicodeString Name = UnicodeString(Ciphers[Index]->list[Index2]->ssh2_id);
 
-       Result->Add(Name);
 
-     }
 
-   }
 
-   return Result.release();
 
- }
 
- //---------------------------------------------------------------------------
 
- TStrings * SshKexList()
 
- {
 
-   std::unique_ptr<TStrings> Result(new TStringList());
 
-   // Same order as DefaultKexList
 
-   const ssh_kexes * Kexes[] = { &ssh_ecdh_kex, &ssh_diffiehellman_gex, &ssh_diffiehellman_group14, &ssh_rsa_kex, &ssh_diffiehellman_group1 };
 
-   for (unsigned int Index = 0; Index < LENOF(Kexes); Index++)
 
-   {
 
-     for (int Index2 = 0; Index2 < Kexes[Index]->nkexes; Index2++)
 
-     {
 
-       UnicodeString Name = UnicodeString(Kexes[Index]->list[Index2]->name);
 
-       Result->Add(Name);
 
-     }
 
-   }
 
-   return Result.release();
 
- }
 
- //---------------------------------------------------------------------------
 
- TStrings * SshHostKeyList()
 
- {
 
-   std::unique_ptr<TStrings> Result(new TStringList());
 
-   const int MaxCount = 10;
 
-   const ssh_keyalg * SignKeys[MaxCount];
 
-   int Count = LENOF(SignKeys);
 
-   get_hostkey_algs(&Count, SignKeys);
 
-   for (int Index = 0; Index < Count; Index++)
 
-   {
 
-     const ssh_keyalg * SignKey = SignKeys[Index];
 
-     UnicodeString Name = UnicodeString(SignKey->ssh_id);
 
-     Result->Add(Name);
 
-   }
 
-   return Result.release();
 
- }
 
- //---------------------------------------------------------------------------
 
- TStrings * SshMacList()
 
- {
 
-   std::unique_ptr<TStrings> Result(new TStringList());
 
-   const struct ssh2_macalg ** Macs = NULL;
 
-   int Count = 0;
 
-   get_macs(&Count, &Macs);
 
-   for (int Index = 0; Index < Count; Index++)
 
-   {
 
-     UnicodeString Name = UnicodeString(Macs[Index]->name);
 
-     Result->Add(Name);
 
-   }
 
-   return Result.release();
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString GetCipherName(const ssh_cipher * Cipher)
 
- {
 
-   return UnicodeString(UTF8String(Cipher->vt->text_name));
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString GetCompressorName(const ssh_compressor * Compressor)
 
- {
 
-   UnicodeString Result;
 
-   if (Compressor != NULL)
 
-   {
 
-     Result = UnicodeString(UTF8String(Compressor->vt->name));
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString GetDecompressorName(const ssh_decompressor * Decompressor)
 
- {
 
-   UnicodeString Result;
 
-   if (Decompressor != NULL)
 
-   {
 
-     Result = UnicodeString(UTF8String(Decompressor->vt->name));
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void WritePuttySettings(THierarchicalStorage * Storage, const UnicodeString & ASettings)
 
- {
 
-   if (PuttyRegistryTypes.empty())
 
-   {
 
-     TGuard Guard(PuttyRegistrySection.get());
 
-     TValueRestorer<TPuttyRegistryMode> PuttyRegistryModeRestorer(PuttyRegistryMode);
 
-     PuttyRegistryMode = prmCollect;
 
-     Conf * conf = conf_new();
 
-     try
 
-     {
 
-       do_defaults(NULL, conf);
 
-       save_settings(NULL, conf);
 
-     }
 
-     __finally
 
-     {
 
-       conf_free(conf);
 
-     }
 
-   }
 
-   std::unique_ptr<TStrings> Settings(new TStringList());
 
-   UnicodeString Buf = ASettings;
 
-   UnicodeString Setting;
 
-   while (CutToken(Buf, Setting))
 
-   {
 
-     Settings->Add(Setting);
 
-   }
 
-   for (int Index = 0; Index < Settings->Count; Index++)
 
-   {
 
-     UnicodeString Name = Settings->Names[Index];
 
-     TPuttyRegistryTypes::const_iterator IType = PuttyRegistryTypes.find(Name);
 
-     if (IType != PuttyRegistryTypes.end())
 
-     {
 
-       UnicodeString Value = Settings->ValueFromIndex[Index];
 
-       int I;
 
-       if (IType->second == REG_SZ)
 
-       {
 
-         Storage->WriteStringRaw(Name, Value);
 
-       }
 
-       else if (DebugAlwaysTrue(IType->second == REG_DWORD) &&
 
-                TryStrToInt(Value, I))
 
-       {
 
-         Storage->WriteInteger(Name, I);
 
-       }
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void PuttyDefaults(Conf * conf)
 
- {
 
-   TGuard Guard(PuttyRegistrySection.get());
 
-   TValueRestorer<TPuttyRegistryMode> PuttyRegistryModeRestorer(PuttyRegistryMode);
 
-   PuttyRegistryMode = prmFail;
 
-   do_defaults(NULL, conf);
 
- }
 
- //---------------------------------------------------------------------------
 
- void SavePuttyDefaults(const UnicodeString & Name)
 
- {
 
-   TGuard Guard(PuttyRegistrySection.get());
 
-   TValueRestorer<TPuttyRegistryMode> PuttyRegistryModeRestorer(PuttyRegistryMode);
 
-   PuttyRegistryMode = prmPass;
 
-   Conf * conf = conf_new();
 
-   try
 
-   {
 
-     PuttyDefaults(conf);
 
-     AnsiString PuttyName = PuttyStr(Name);
 
-     save_settings(PuttyName.c_str(), conf);
 
-   }
 
-   __finally
 
-   {
 
-     conf_free(conf);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
 
  |