DecryptKeyDlg.cpp
上传用户:len888
上传日期:2015-03-06
资源大小:59k
文件大小:1k
源码类别:

CA认证

开发平台:

Visual C++

  1. // DecryptKeyDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "RSAWANG.h"
  5. #include "DecryptKeyDlg.h"
  6. #include "rsawangdlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CDecryptKeyDlg dialog
  14. CDecryptKeyDlg::CDecryptKeyDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CDecryptKeyDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CDecryptKeyDlg)
  18. m_strInputDecryptKey = _T("");
  19. m_strInputModeR1 = _T("");
  20. //}}AFX_DATA_INIT
  21. }
  22. void CDecryptKeyDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CDecryptKeyDlg)
  26. DDX_Text(pDX, IDC_INPUTDECRYPTKEY, m_strInputDecryptKey);
  27. DDX_Text(pDX, IDC_INPUTMODER1, m_strInputModeR1);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CDecryptKeyDlg, CDialog)
  31. //{{AFX_MSG_MAP(CDecryptKeyDlg)
  32. ON_BN_CLICKED(IDC_DECRYPTKEY, OnDecryptkey)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CDecryptKeyDlg message handlers
  37. void CDecryptKeyDlg::OnDecryptkey() 
  38. {
  39. // TODO: Add your control notification handler code here
  40. //CRSAWANGDlg dlg;
  41. UpdateData(TRUE);
  42. //dlg.m_strInputPrivateKey=m_strInputDecryptKey;
  43. CDialog::OnOK();
  44. }