1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| #pragma once
| //ÃÜÂë²ßÂÔ
| // CMBPwdPolicyMgr command target
|
|
| class AFX_EXT_CLASS CMBPwdPolicyMgr : public CObject
| {
| public:
| CMBPwdPolicyMgr();
| virtual ~CMBPwdPolicyMgr();
| private:
| CString GetIniFile();
| int GetPwdMinLen( );
| BOOL IsPwdHaveNumber( );
| BOOL IsPwdHaveChar( );
| BOOL IsPwdHaveLowerCase( );
| BOOL IsPwdHaveUpperCase( );
| BOOL IsPwdHaveSpecChar( );
| public:
| BOOL IsUsePwdPolicy( );
| BOOL CheckUserPasswordPolicy(CString strPassword,CString &strErrorInfo);
| };
|
|