Merge pull request #41 from RS7-SECIOTSRK/develop
[platform/core/security/suspicious-activity-monitor.git] / dpm-tm1 / server / password-manager.h
1 /*
2  *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16
17 #ifndef __DPM_PASSWORD_MANAGER_H__
18 #define __DPM_PASSWORD_MANAGER_H__
19 #include <sys/types.h>
20
21 #include <vector>
22 #include <string>
23
24 //#include <auth-passwd-admin.h>
25
26 typedef int password_quality_type;
27 typedef int policy_h;
28
29 class PasswordManager {
30 public:
31         typedef password_quality_type QualityType;
32
33         PasswordManager(uid_t uid);
34         ~PasswordManager();
35
36         void setQuality(QualityType quality);
37         void setMinimumLength(int value);
38         void setMinimumComplexCharacters(int value);
39         void setMaximumFailedForWipe(int value);
40         void setExpires(int value);
41         void setHistory(int value);
42         void setPattern(const char* pattern);
43         void deletePatern();
44         void setMaximumCharacterOccurrences(int value);
45         void setMaximumNumericSequenceLength(int value);
46         void setForbiddenStrings(const std::vector<std::string> &forbiddenStrings);
47         void resetPassword(const std::string& password);
48         void enforce();
49
50 private:
51         uid_t user;
52         policy_h *p_policy;
53 };
54 #endif //!__DPM_PASSWORD_MANAGER_H__