| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | //---------------------------------------------------------------------------#ifndef PuttyToolsH#define PuttyToolsH//---------------------------------------------------------------------------enum TKeyType{  ktUnopenable, ktUnknown,  ktSSH1, ktSSH2,  ktOpenSSHAuto, ktOpenSSHPEM, ktOpenSSHNew, ktSSHCom,  ktSSH1Public, ktSSH2PublicRFC4716, ktSSH2PublicOpenSSH};TKeyType KeyType(UnicodeString FileName);bool IsKeyEncrypted(TKeyType KeyType, const UnicodeString & FileName, UnicodeString & Comment);struct TPrivateKey;TPrivateKey * LoadKey(TKeyType KeyType, const UnicodeString & FileName, const UnicodeString & Passphrase);void ChangeKeyComment(TPrivateKey * PrivateKey, const UnicodeString & Comment);void SaveKey(TKeyType KeyType, const UnicodeString & FileName,  const UnicodeString & Passphrase, TPrivateKey * PrivateKey);void FreeKey(TPrivateKey * PrivateKey);UnicodeString GetPublicKeyLine(const UnicodeString & FileName, UnicodeString & Comment);extern const UnicodeString PuttyKeyExt;//---------------------------------------------------------------------------bool __fastcall HasGSSAPI(UnicodeString CustomPath);//---------------------------------------------------------------------------void __fastcall AES256EncodeWithMAC(char * Data, size_t Len, const char * Password,  size_t PasswordLen, const char * Salt);//---------------------------------------------------------------------------UnicodeString __fastcall NormalizeFingerprint(UnicodeString Fingerprint);UnicodeString __fastcall KeyTypeFromFingerprint(UnicodeString Fingerprint);//---------------------------------------------------------------------------UnicodeString __fastcall GetPuTTYVersion();//---------------------------------------------------------------------------UnicodeString __fastcall Sha256(const char * Data, size_t Size);//---------------------------------------------------------------------------void __fastcall DllHijackingProtection();//---------------------------------------------------------------------------UnicodeString __fastcall ParseOpenSshPubLine(const UnicodeString & Line, const struct ssh_signkey *& Algorithm);//---------------------------------------------------------------------------UnicodeString __fastcall GetKeyTypeHuman(const UnicodeString & KeyType);//---------------------------------------------------------------------------bool IsOpenSSH(const UnicodeString & SshImplementation);//---------------------------------------------------------------------------TStrings * SshCipherList();TStrings * SshKexList();TStrings * SshHostKeyList();TStrings * SshMacList();//---------------------------------------------------------------------------#endif
 |