⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 passwordsafe.cpp

📁 Password Safe Password Safe is a password database utility. Users can keep their passwords securely
💻 CPP
字号:
/// \file PasswordSafe.cpp/// \brief  Defines the class behaviors for the application.//-----------------------------------------------------------------------------#include "stdafx.h"#include "PasswordSafe.h"#include <io.h>#include <fcntl.h>#include <sys/stat.h>#include "PasskeyEntry.h"#include "PasskeySetup.h"#include "CryptKeyEntry.h"#include "BlowFish.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif//-----------------------------------------------------------------------------/*  The one and only CPasswordSafeApp object.  In the MFC world, creating  this global object is what starts the application.*/CPasswordSafeApp app;//-----------------------------------------------------------------------------BEGIN_MESSAGE_MAP(CPasswordSafeApp, CWinApp)//   ON_COMMAND(ID_HELP, CWinApp::OnHelp)   ON_COMMAND(ID_HELP, OnHelp)END_MESSAGE_MAP()CPasswordSafeApp::CPasswordSafeApp(){   srand((unsigned)time(NULL));}CPasswordSafeApp::~CPasswordSafeApp(){   /*     apparently, with vc7, there's a CWinApp::HtmlHelp - I'd like     to see the docs, someday.  In the meantime, force with :: syntax   */   ::HtmlHelp(NULL, NULL, HH_CLOSE_ALL, 0);}BOOLCPasswordSafeApp::InitInstance(){   /*    * It's always best to start at the beginning.  [Glinda, Witch of the North]    */   // these 3d enables are signalled as deprecated by VC7...#ifdef _AFXDLL   Enable3dControls();          // Call this when using MFC in a shared DLL#else   Enable3dControlsStatic();	// Call this when linking to MFC statically#endif   if (GetOSVersion() == Win32s)   {      AfxMessageBox(         "Sorry. Password Safe uses advanced Windows features and\n"         "cannot be run under Windows 3.x with Win32s\n"         "The program will terminate now.");      exit(20);   }   /*     save the current directory in a data member - I wonder why {jpr}   */   char fn[_MAX_PATH];   int result = GetCurrentDirectory(_MAX_PATH, fn);   if ((result == 0) || (result > _MAX_PATH))      m_curdir = "";   else      m_curdir = (CMyString)fn + (CMyString) "\\";   /*     this pulls 'Counterpane Systems' out of the string table, verifies     that it exists (actually, only verifies that *some* IDS_COMPANY     string exists -- it could be 'Microsoft' for all we know), and then     instructs the app to use the registry instead of .ini files.  The     path ends up being     HKEY_CURRENT_USER\Software\(companyname)\(appname)\(sectionname)\(valuename)     Assuming the open-source version of this is going to become less     Counterpane-centric, I expect this may change, but if it does, an     automagic migration ought to happen. -- {jpr}   */   CMyString companyname;   VERIFY(companyname.LoadString(IDS_COMPANY) != 0);   SetRegistryKey(companyname);   /*     Command line processing or main dialog box?   */   if (m_lpCmdLine[0] != '\0')   {      CCryptKeyEntry dlg(NULL);      int nResponse = dlg.DoModal();      if (nResponse==IDOK)      {         m_passkey = dlg.m_cryptkey1;         manageCmdLine(m_lpCmdLine);      }      /*       * we're done with the 'commandline version' - exit the app       */      return FALSE;   }   /*    * normal startup    */   /*    * here's where PWS currently does DboxMain, which in turn will do    * the initial PasskeyEntry.  This makes things very hard to control.    * The app object (here) should instead do the initial PasskeyEntry,    * and, if successful, move on to DboxMain.  I think. {jpr}    */   m_maindlg = new DboxMain(NULL);   m_pMainWnd = m_maindlg;   //Set up an Accelerator table   m_ghAccelTable = LoadAccelerators(AfxGetInstanceHandle(),                                     MAKEINTRESOURCE(IDR_ACCS));   //Run dialog   //int rc  = m_maindlg->DoModal();   (void) m_maindlg->DoModal();   /*     note that we don't particularly care what the response was   */   delete m_maindlg;   // Since the dialog has been closed, return FALSE so that we exit the   //  application, rather than start the application's message pump.   return FALSE;}//Copied from Knowledge Base article Q100770BOOLCPasswordSafeApp::ProcessMessageFilter(int code,                                       LPMSG lpMsg){   if (code < 0)      CWinApp::ProcessMessageFilter(code, lpMsg);	   if (m_maindlg != NULL       && m_ghAccelTable != NULL)   {      if (::TranslateAccelerator(m_maindlg->m_hWnd, m_ghAccelTable, lpMsg))         return TRUE;   }   return CWinApp::ProcessMessageFilter(code, lpMsg);}voidCPasswordSafeApp::OnHelp(){   ::HtmlHelp(NULL,              "pwsafe.chm::/html/pws_intro.htm",              HH_DISPLAY_TOPIC, 0);}//-----------------------------------------------------------------------------//-----------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -