Fix Password Minimum Length setting 62/78262/1
authorSungjun, Lee <sjun221.lee@samsung.com>
Tue, 5 Jul 2016 02:15:53 +0000 (11:15 +0900)
committerSungjun, Lee <sjun221.lee@samsung.com>
Tue, 5 Jul 2016 02:15:53 +0000 (11:15 +0900)
Change-Id: Ia579faf0d111ca1d6797050ee5892842e403f800
Signed-off-by: Sungjun, Lee <sjun221.lee@samsung.com>
server/password.cpp

index a3b0408..c7cb717 100644 (file)
@@ -42,183 +42,183 @@ std::vector<std::string> ForbiddenStrings;
 
 int createNotificationLaunch(void)
 {
-    int lock_type = 0, view_type = 0, ret;
-    app_control_h app_control = NULL;
-    static notification_h passwdNoti = NULL;
-    char sViewtype[][40] = {"SETTING_PW_TYPE_SET_SIMPLE_PASSWORD", "SETTING_PW_TYPE_SET_PASSWORD"};
-
-    vconf_get_int(VCONFKEY_SETAPPL_SCREEN_LOCK_TYPE_INT, &lock_type);
-    if (lock_type == SETTING_SCREEN_LOCK_TYPE_SIMPLE_PASSWORD)
-        view_type = 0;
-    else
-        view_type = 1;
-
-    passwdNoti = notification_create(NOTIFICATION_TYPE_NOTI);
-    if (passwdNoti == NULL) {
-        return -1;
-    }
-
-    ret = app_control_create(&app_control);
-    if (ret != APP_CONTROL_ERROR_NONE) {
-        notification_free(passwdNoti);
-        return -1;
-    }
-
-    ret = 0;
-    try {
-        ret = notification_set_text(passwdNoti, NOTIFICATION_TEXT_TYPE_TITLE, "Change password", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
-        if (ret != NOTIFICATION_ERROR_NONE) {
-            throw runtime::Exception("notification_set_text1 error");
-        }
-
-        ret = notification_set_text(passwdNoti, NOTIFICATION_TEXT_TYPE_CONTENT, "Tap here to change password", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
-        if (ret != NOTIFICATION_ERROR_NONE) {
-            throw runtime::Exception("notification_set_text2 error");
-        }
-
-        ret = notification_set_display_applist(passwdNoti, NOTIFICATION_DISPLAY_APP_ALL);
-        if (ret != NOTIFICATION_ERROR_NONE) {
-            throw runtime::Exception("notification_set_display_applist error");
-        }
-
-        ret = app_control_set_app_id(app_control, "setting-password-efl");
-        if (ret != APP_CONTROL_ERROR_NONE) {
-            throw runtime::Exception("app_control_set_app_id error");
-        }
-
-        ret = app_control_add_extra_data(app_control, "viewtype", sViewtype[view_type]);
-        if (ret != APP_CONTROL_ERROR_NONE) {
-            throw runtime::Exception("app_control_add_extra_data1 error");
-        }
-
-        ret = app_control_add_extra_data(app_control, "caller", "DPM");
-        if (ret != APP_CONTROL_ERROR_NONE) {
-            throw runtime::Exception("app_control_add_extra_data2 error");
-        }
-
-        ret = notification_set_launch_option(passwdNoti, NOTIFICATION_LAUNCH_OPTION_APP_CONTROL, (void *)app_control);
-        if (ret != NOTIFICATION_ERROR_NONE) {
-            throw runtime::Exception("notification_set_launch_option error");
-        }
-
-        ret = notification_post(passwdNoti);
-        if (ret != NOTIFICATION_ERROR_NONE) {
-            throw runtime::Exception("notification_post error");
-        }
-    } catch (runtime::Exception e) {
-        ERROR(e.what());
-        ret = -1;
-    }
-
-    app_control_destroy(app_control);
-    notification_free(passwdNoti);
-
-    return ret;
+       int lock_type = 0, view_type = 0, ret;
+       app_control_h app_control = NULL;
+       static notification_h passwdNoti = NULL;
+       char sViewtype[][40] = {"SETTING_PW_TYPE_SET_SIMPLE_PASSWORD", "SETTING_PW_TYPE_SET_PASSWORD"};
+
+       vconf_get_int(VCONFKEY_SETAPPL_SCREEN_LOCK_TYPE_INT, &lock_type);
+       if (lock_type == SETTING_SCREEN_LOCK_TYPE_SIMPLE_PASSWORD)
+               view_type = 0;
+       else
+               view_type = 1;
+
+       passwdNoti = notification_create(NOTIFICATION_TYPE_NOTI);
+       if (passwdNoti == NULL) {
+               return -1;
+       }
+
+       ret = app_control_create(&app_control);
+       if (ret != APP_CONTROL_ERROR_NONE) {
+               notification_free(passwdNoti);
+               return -1;
+       }
+
+       ret = 0;
+       try {
+               ret = notification_set_text(passwdNoti, NOTIFICATION_TEXT_TYPE_TITLE, "Change password", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
+               if (ret != NOTIFICATION_ERROR_NONE) {
+                       throw runtime::Exception("notification_set_text1 error");
+               }
+
+               ret = notification_set_text(passwdNoti, NOTIFICATION_TEXT_TYPE_CONTENT, "Tap here to change password", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
+               if (ret != NOTIFICATION_ERROR_NONE) {
+                       throw runtime::Exception("notification_set_text2 error");
+               }
+
+               ret = notification_set_display_applist(passwdNoti, NOTIFICATION_DISPLAY_APP_ALL);
+               if (ret != NOTIFICATION_ERROR_NONE) {
+                       throw runtime::Exception("notification_set_display_applist error");
+               }
+
+               ret = app_control_set_app_id(app_control, "setting-password-efl");
+               if (ret != APP_CONTROL_ERROR_NONE) {
+                       throw runtime::Exception("app_control_set_app_id error");
+               }
+
+               ret = app_control_add_extra_data(app_control, "viewtype", sViewtype[view_type]);
+               if (ret != APP_CONTROL_ERROR_NONE) {
+                       throw runtime::Exception("app_control_add_extra_data1 error");
+               }
+
+               ret = app_control_add_extra_data(app_control, "caller", "DPM");
+               if (ret != APP_CONTROL_ERROR_NONE) {
+                       throw runtime::Exception("app_control_add_extra_data2 error");
+               }
+
+               ret = notification_set_launch_option(passwdNoti, NOTIFICATION_LAUNCH_OPTION_APP_CONTROL, (void *)app_control);
+               if (ret != NOTIFICATION_ERROR_NONE) {
+                       throw runtime::Exception("notification_set_launch_option error");
+               }
+
+               ret = notification_post(passwdNoti);
+               if (ret != NOTIFICATION_ERROR_NONE) {
+                       throw runtime::Exception("notification_post error");
+               }
+       } catch (runtime::Exception e) {
+               ERROR(e.what());
+               ret = -1;
+       }
+
+       app_control_destroy(app_control);
+       notification_free(passwdNoti);
+
+       return ret;
 }
 
 int SetPasswordPolicy(PolicyControlContext &context, const std::string &name, const std::string &value)
 {
-    return context.updatePolicy(name, value, "password", name);
+       return context.updatePolicy(name, value, "password", name);
 }
 
 std::string GetPasswordPolicy(PolicyControlContext &context, const std::string &name)
 {
-    return context.getPolicy(name);
+       return context.getPolicy(name);
 }
 
 int transformValueFromIntToQualityType(const int quality, PasswordPolicy::PasswordPolicyQuality &changed_quality)
 {
-    switch (quality) {
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_UNSPECIFIED:
-        changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_UNSPECIFIED;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD:
-        changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_SOMETHING:
-        changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_SOMETHING;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_NUMERIC:
-        changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_NUMERIC;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHABETIC:
-        changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHABETIC;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHANUMERIC:
-        changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHANUMERIC;
-        break;
-    default:
-        ERROR("unknown password quality");
-        return -1;
-        break;
-    }
-
-    return 0;
+       switch (quality) {
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_UNSPECIFIED:
+               changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_UNSPECIFIED;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD:
+               changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_SOMETHING:
+               changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_SOMETHING;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_NUMERIC:
+               changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_NUMERIC;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHABETIC:
+               changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHABETIC;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHANUMERIC:
+               changed_quality = PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHANUMERIC;
+               break;
+       default:
+               ERROR("unknown password quality");
+               return -1;
+               break;
+       }
+
+       return 0;
 }
 
 int transformQualityFromDPMToAuth(const int dpm_quality, password_quality_type &auth_quality)
 {
-    switch (dpm_quality) {
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_UNSPECIFIED:
-        auth_quality = AUTH_PWD_QUALITY_UNSPECIFIED;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD:
-        auth_quality = AUTH_PWD_QUALITY_UNSPECIFIED;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_SOMETHING:
-        auth_quality = AUTH_PWD_QUALITY_SOMETHING;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_NUMERIC:
-        auth_quality = AUTH_PWD_QUALITY_NUMERIC;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHABETIC:
-        auth_quality = AUTH_PWD_QUALITY_ALPHABETIC;
-        break;
-    case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHANUMERIC:
-        auth_quality = AUTH_PWD_QUALITY_ALPHANUMERIC;
-        break;
-    default:
-        ERROR("unknown");
-        return -1;
-        break;
-    }
-
-    return 0;
+       switch (dpm_quality) {
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_UNSPECIFIED:
+               auth_quality = AUTH_PWD_QUALITY_UNSPECIFIED;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD:
+               auth_quality = AUTH_PWD_QUALITY_UNSPECIFIED;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_SOMETHING:
+               auth_quality = AUTH_PWD_QUALITY_SOMETHING;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_NUMERIC:
+               auth_quality = AUTH_PWD_QUALITY_NUMERIC;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHABETIC:
+               auth_quality = AUTH_PWD_QUALITY_ALPHABETIC;
+               break;
+       case PasswordPolicy::DPM_PASSWORD_QUALITY_ALPHANUMERIC:
+               auth_quality = AUTH_PWD_QUALITY_ALPHANUMERIC;
+               break;
+       default:
+               ERROR("unknown");
+               return -1;
+               break;
+       }
+
+       return 0;
 }
 
 } // namespace
 
 PasswordPolicy::PasswordPolicy(PolicyControlContext &ctxt) :
-    __context(ctxt)
-{
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyQuality)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyQuality));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyMinimumLength)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyMinimumLength));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMinPasswordPolicyComplexChars)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMinPasswordPolicyComplexChars));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaximumFailedPasswordPolicyForWipe)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaximumFailedPasswordPolicyForWipe));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyExpires)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyExpires)());
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyHistory)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyHistory)());
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyPattern)(std::string));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::resetPasswordPolicy)(std::string));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::enforcePasswordPolicyChange));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaxInactivityTimeDeviceLock)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaxInactivityTimeDeviceLock));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyStatus)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::deletePasswordPolicyPattern));
-    ctxt.registerNonparametricMethod(this, (std::string)(PasswordPolicy::getPasswordPolicyPattern));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaximumCharacterOccurrences)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaximumCharacterOccurrences));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaximumNumericSequenceLength)(int));
-    ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaximumNumericSequenceLength));
-    ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setForbiddenStrings)(std::vector<std::string>));
-    ctxt.registerNonparametricMethod(this, (std::vector<std::string>)(PasswordPolicy::getForbiddenStrings));
-
-    ctxt.createNotification("password");
+       __context(ctxt)
+{
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyQuality)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyQuality));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyMinimumLength)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyMinimumLength));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMinPasswordPolicyComplexChars)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMinPasswordPolicyComplexChars));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaximumFailedPasswordPolicyForWipe)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaximumFailedPasswordPolicyForWipe));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyExpires)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyExpires)());
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyHistory)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getPasswordPolicyHistory)());
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyPattern)(std::string));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::resetPasswordPolicy)(std::string));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::enforcePasswordPolicyChange));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaxInactivityTimeDeviceLock)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaxInactivityTimeDeviceLock));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setPasswordPolicyStatus)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::deletePasswordPolicyPattern));
+       ctxt.registerNonparametricMethod(this, (std::string)(PasswordPolicy::getPasswordPolicyPattern));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaximumCharacterOccurrences)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaximumCharacterOccurrences));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setMaximumNumericSequenceLength)(int));
+       ctxt.registerNonparametricMethod(this, (int)(PasswordPolicy::getMaximumNumericSequenceLength));
+       ctxt.registerParametricMethod(this, (int)(PasswordPolicy::setForbiddenStrings)(std::vector<std::string>));
+       ctxt.registerNonparametricMethod(this, (std::vector<std::string>)(PasswordPolicy::getForbiddenStrings));
+
+       ctxt.createNotification("password");
 }
 
 PasswordPolicy::~PasswordPolicy()
@@ -227,495 +227,497 @@ PasswordPolicy::~PasswordPolicy()
 
 int PasswordPolicy::setPasswordPolicyQuality(const int quality)
 {
-    policy_h *p_policy;
-    password_quality_type auth_quality_type = AUTH_PWD_QUALITY_UNSPECIFIED;
+       policy_h *p_policy;
+       password_quality_type auth_quality_type = AUTH_PWD_QUALITY_UNSPECIFIED;
 
-    if (transformValueFromIntToQualityType(quality, qualityType) != 0) {
-        return -1;
-    }
+       if (transformValueFromIntToQualityType(quality, qualityType) != 0) {
+               return -1;
+       }
 
-    if (transformQualityFromDPMToAuth(qualityType, auth_quality_type) != 0) {
-        return -1;
-    }
+       if (transformQualityFromDPMToAuth(qualityType, auth_quality_type) != 0) {
+               return -1;
+       }
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_quality(p_policy, auth_quality_type) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_quality(p_policy, auth_quality_type) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (qualityType == PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD) {
-        if (auth_passwd_set_min_length(p_policy, SIMPLE_PASSWORD_LENGTH) != AUTH_PASSWD_API_SUCCESS) {
-            auth_passwd_free_policy(p_policy);
-            return -1;
-        }
-    }
+       if (qualityType == PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD) {
+               if (auth_passwd_set_min_length(p_policy, SIMPLE_PASSWORD_LENGTH) != AUTH_PASSWD_API_SUCCESS) {
+                       auth_passwd_free_policy(p_policy);
+                       return -1;
+               }
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    SetPasswordPolicy(__context, "password-quality", std::to_string(quality));
-    SetPasswordPolicy(__context, "password-minimum-length", std::to_string(SIMPLE_PASSWORD_LENGTH));
+       SetPasswordPolicy(__context, "password-quality", std::to_string(quality));
+       if (qualityType == PasswordPolicy::DPM_PASSWORD_QUALITY_SIMPLE_PASSWORD) {
+               SetPasswordPolicy(__context, "password-minimum-length", std::to_string(SIMPLE_PASSWORD_LENGTH));
+       }
 
-    return 0;
+       return 0;
 }
 
 int PasswordPolicy::getPasswordPolicyQuality()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-quality"));
+       return std::stoi(GetPasswordPolicy(__context, "password-quality"));
 }
 
 int PasswordPolicy::setPasswordPolicyMinimumLength(const int value)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_min_length(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_min_length(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    return SetPasswordPolicy(__context, "password-minimum-length", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-minimum-length", std::to_string(value));
 }
 
 int PasswordPolicy::getPasswordPolicyMinimumLength()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-minimum-length"));
+       return std::stoi(GetPasswordPolicy(__context, "password-minimum-length"));
 }
 
 int PasswordPolicy::setMinPasswordPolicyComplexChars(const int value)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_min_complex_char_num(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_min_complex_char_num(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    return SetPasswordPolicy(__context, "password-minimum-complexity", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-minimum-complexity", std::to_string(value));
 }
 
 int PasswordPolicy::getMinPasswordPolicyComplexChars()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-minimum-complexity"));
+       return std::stoi(GetPasswordPolicy(__context, "password-minimum-complexity"));
 }
 
 int PasswordPolicy::setMaximumFailedPasswordPolicyForWipe(const int value)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_max_attempts(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_max_attempts(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    return SetPasswordPolicy(__context, "password-maximum-failure-count", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-maximum-failure-count", std::to_string(value));
 }
 
 int PasswordPolicy::getMaximumFailedPasswordPolicyForWipe()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-maximum-failure-count"));
+       return std::stoi(GetPasswordPolicy(__context, "password-maximum-failure-count"));
 }
 
 int PasswordPolicy::setPasswordPolicyExpires(const int value)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_validity(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_validity(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    return SetPasswordPolicy(__context, "password-expired", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-expired", std::to_string(value));
 }
 
 int PasswordPolicy::getPasswordPolicyExpires()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-expired"));
+       return std::stoi(GetPasswordPolicy(__context, "password-expired"));
 }
 
 int PasswordPolicy::setPasswordPolicyHistory(const int value)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_history_size(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_history_size(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    return SetPasswordPolicy(__context, "password-history", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-history", std::to_string(value));
 }
 
 int PasswordPolicy::getPasswordPolicyHistory()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-history"));
+       return std::stoi(GetPasswordPolicy(__context, "password-history"));
 }
 
 int PasswordPolicy::setPasswordPolicyPattern(const std::string &pattern)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_pattern(p_policy, pattern.c_str()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_pattern(p_policy, pattern.c_str()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    PasswordPattern = pattern;
-    if (PasswordPattern.compare("") == 0)
-        PasswordPattern = PASSWORD_EMPTY_STRING;
+       PasswordPattern = pattern;
+       if (PasswordPattern.compare("") == 0)
+               PasswordPattern = PASSWORD_EMPTY_STRING;
 
-    return SetPasswordPolicy(__context, "password-pattern", PasswordPattern.c_str());
+       return SetPasswordPolicy(__context, "password-pattern", PasswordPattern.c_str());
 }
 
 int PasswordPolicy::resetPasswordPolicy(const std::string &passwd)
 {
-    int ret = 0;
+       int ret = 0;
 
-    if (auth_passwd_reset_passwd(AUTH_PWD_NORMAL, __context.getPeerUid(), passwd.c_str()) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_reset_passwd(AUTH_PWD_NORMAL, __context.getPeerUid(), passwd.c_str()) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    return ret;
+       return ret;
 }
 
 int PasswordPolicy::enforcePasswordPolicyChange()
 {
-    int ret = 0;
-    int lock_type = 0;
-    bundle *b = ::bundle_create();
-    const char *simple_user_data[6] = {"app-id", "setting-password-efl", "caller", "DPM", "viewtype", "SETTING_PW_TYPE_SET_SIMPLE_PASSWORD"};
-    const char *passwd_user_data[6] = {"app-id", "setting-password-efl", "caller", "DPM", "viewtype", "SETTING_PW_TYPE_SET_PASSWORD"};
-
-    vconf_get_int(VCONFKEY_SETAPPL_SCREEN_LOCK_TYPE_INT, &lock_type);
-    ::bundle_add_str(b, "id", "password-enforce-change");
-    if (lock_type == SETTING_SCREEN_LOCK_TYPE_SIMPLE_PASSWORD)
-        ::bundle_add_str_array(b, "user-data", simple_user_data, 6);
-    else
-        ::bundle_add_str_array(b, "user-data", passwd_user_data, 6);
-    ret = ::aul_launch_app_for_uid("org.tizen.dpm-syspopup", b, __context.getPeerUid());
-    ::bundle_free(b);
-
-    if (ret < 0) {
-        ERROR("Failed to launch Password Application.");
-        return -1;
-    } else {
-        return SetPasswordPolicy(__context, "password-status", std::to_string(PasswordPolicy::DPM_PASSWORD_STATUS_CHANGE_REQUIRED));
-    }
+       int ret = 0;
+       int lock_type = 0;
+       bundle *b = ::bundle_create();
+       const char *simple_user_data[6] = {"app-id", "setting-password-efl", "caller", "DPM", "viewtype", "SETTING_PW_TYPE_SET_SIMPLE_PASSWORD"};
+       const char *passwd_user_data[6] = {"app-id", "setting-password-efl", "caller", "DPM", "viewtype", "SETTING_PW_TYPE_SET_PASSWORD"};
+
+       vconf_get_int(VCONFKEY_SETAPPL_SCREEN_LOCK_TYPE_INT, &lock_type);
+       ::bundle_add_str(b, "id", "password-enforce-change");
+       if (lock_type == SETTING_SCREEN_LOCK_TYPE_SIMPLE_PASSWORD)
+               ::bundle_add_str_array(b, "user-data", simple_user_data, 6);
+       else
+               ::bundle_add_str_array(b, "user-data", passwd_user_data, 6);
+       ret = ::aul_launch_app_for_uid("org.tizen.dpm-syspopup", b, __context.getPeerUid());
+       ::bundle_free(b);
+
+       if (ret < 0) {
+               ERROR("Failed to launch Password Application.");
+               return -1;
+       } else {
+               return SetPasswordPolicy(__context, "password-status", std::to_string(PasswordPolicy::DPM_PASSWORD_STATUS_CHANGE_REQUIRED));
+       }
 }
 
 int PasswordPolicy::setMaxInactivityTimeDeviceLock(const int value)
 {
-    return SetPasswordPolicy(__context, "password-inactivity-timeout", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-inactivity-timeout", std::to_string(value));
 }
 
 int PasswordPolicy::getMaxInactivityTimeDeviceLock()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-inactivity-timeout"));
+       return std::stoi(GetPasswordPolicy(__context, "password-inactivity-timeout"));
 }
 
 int PasswordPolicy::setPasswordPolicyStatus(const int status)
 {
-    int current_status = std::stoi(GetPasswordPolicy(__context, "password-status"));
+       int current_status = std::stoi(GetPasswordPolicy(__context, "password-status"));
 
-    if (status >= PasswordPolicy::DPM_PASSWORD_STATUS_MAX) {
-        return -1;
-    }
+       if (status >= PasswordPolicy::DPM_PASSWORD_STATUS_MAX) {
+               return -1;
+       }
 
-    if (status == PasswordPolicy::DPM_PASSWORD_STATUS_MAX_ATTEMPTS_EXCEEDED) {
-        ERROR("Max Attempts Exceeded.");
-        return -1;
-    }
+       if (status == PasswordPolicy::DPM_PASSWORD_STATUS_MAX_ATTEMPTS_EXCEEDED) {
+               ERROR("Max Attempts Exceeded.");
+               return -1;
+       }
 
-    if (current_status == PasswordPolicy::DPM_PASSWORD_STATUS_CHANGE_REQUIRED) {
-        if (status == PasswordPolicy::DPM_PASSWORD_STATUS_CHANGED) {
-            return SetPasswordPolicy(__context, "password-status", std::to_string(PasswordPolicy::DPM_PASSWORD_STATUS_NORMAL));
-        } else if (status == PasswordPolicy::DPM_PASSWORD_STATUS_NOT_CHANGED) {
-            return createNotificationLaunch();
-        }
-    } else if (current_status ==  PasswordPolicy::DPM_PASSWORD_STATUS_NORMAL) {
-        if (status == PasswordPolicy::DPM_PASSWORD_STATUS_CHANGE_REQUIRED) {
-            return SetPasswordPolicy(__context, "password-status", std::to_string(status));
-        }
-    }
+       if (current_status == PasswordPolicy::DPM_PASSWORD_STATUS_CHANGE_REQUIRED) {
+               if (status == PasswordPolicy::DPM_PASSWORD_STATUS_CHANGED) {
+                       return SetPasswordPolicy(__context, "password-status", std::to_string(PasswordPolicy::DPM_PASSWORD_STATUS_NORMAL));
+               } else if (status == PasswordPolicy::DPM_PASSWORD_STATUS_NOT_CHANGED) {
+                       return createNotificationLaunch();
+               }
+       } else if (current_status ==  PasswordPolicy::DPM_PASSWORD_STATUS_NORMAL) {
+               if (status == PasswordPolicy::DPM_PASSWORD_STATUS_CHANGE_REQUIRED) {
+                       return SetPasswordPolicy(__context, "password-status", std::to_string(status));
+               }
+       }
 
-    return -1;
+       return -1;
 }
 
 int PasswordPolicy::deletePasswordPolicyPattern()
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_pattern(p_policy, NULL) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_pattern(p_policy, NULL) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    PasswordPattern.clear();
-    return SetPasswordPolicy(__context, "password-pattern", PASSWORD_EMPTY_STRING);
+       PasswordPattern.clear();
+       return SetPasswordPolicy(__context, "password-pattern", PASSWORD_EMPTY_STRING);
 }
 
 std::string PasswordPolicy::getPasswordPolicyPattern()
 {
-    PasswordPattern = GetPasswordPolicy(__context, "password-pattern");
-    if (PasswordPattern.compare(PASSWORD_EMPTY_STRING) == 0)
-        PasswordPattern = "";
+       PasswordPattern = GetPasswordPolicy(__context, "password-pattern");
+       if (PasswordPattern.compare(PASSWORD_EMPTY_STRING) == 0)
+               PasswordPattern = "";
 
-    return PasswordPattern;
+       return PasswordPattern;
 }
 
 int PasswordPolicy::setMaximumCharacterOccurrences(const int value)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_max_char_occurrences(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_max_char_occurrences(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    return SetPasswordPolicy(__context, "password-maximum-character-occurrences", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-maximum-character-occurrences", std::to_string(value));
 }
 
 int PasswordPolicy::getMaximumCharacterOccurrences()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-maximum-character-occurrences"));
+       return std::stoi(GetPasswordPolicy(__context, "password-maximum-character-occurrences"));
 }
 
 int PasswordPolicy::setMaximumNumericSequenceLength(const int value)
 {
-    policy_h *p_policy;
+       policy_h *p_policy;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_max_num_seq_len(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_max_num_seq_len(p_policy, value) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    return SetPasswordPolicy(__context, "password-numeric-sequences-length", std::to_string(value));
+       return SetPasswordPolicy(__context, "password-numeric-sequences-length", std::to_string(value));
 }
 
 int PasswordPolicy::getMaximumNumericSequenceLength()
 {
-    return std::stoi(GetPasswordPolicy(__context, "password-numeric-sequences-length"));
+       return std::stoi(GetPasswordPolicy(__context, "password-numeric-sequences-length"));
 }
 
 int PasswordPolicy::setForbiddenStrings(const std::vector<std::string> &forbiddenStrings)
 {
-    unsigned int count = 0;
-    policy_h *p_policy;
-    std::string xmlForbiddenStrings;
+       unsigned int count = 0;
+       policy_h *p_policy;
+       std::string xmlForbiddenStrings;
 
-    if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        return -1;
-    }
+       if (auth_passwd_new_policy(&p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               return -1;
+       }
 
-    if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_user(p_policy, __context.getPeerUid()) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    for (std::vector<std::string>::const_iterator iter = forbiddenStrings.begin(); iter != forbiddenStrings.end(); ++iter) {
-        if (auth_passwd_set_forbidden_passwd(p_policy, (*iter).c_str()) != AUTH_PASSWD_API_SUCCESS) {
-            auth_passwd_free_policy(p_policy);
-            return -1;
-        }
-    }
+       for (std::vector<std::string>::const_iterator iter = forbiddenStrings.begin(); iter != forbiddenStrings.end(); ++iter) {
+               if (auth_passwd_set_forbidden_passwd(p_policy, (*iter).c_str()) != AUTH_PASSWD_API_SUCCESS) {
+                       auth_passwd_free_policy(p_policy);
+                       return -1;
+               }
+       }
 
-    if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
-        auth_passwd_free_policy(p_policy);
-        return -1;
-    }
+       if (auth_passwd_set_policy(p_policy) != AUTH_PASSWD_API_SUCCESS) {
+               auth_passwd_free_policy(p_policy);
+               return -1;
+       }
 
-    auth_passwd_free_policy(p_policy);
+       auth_passwd_free_policy(p_policy);
 
-    std::copy(forbiddenStrings.begin(), forbiddenStrings.end(), std::back_inserter(ForbiddenStrings));
-    for (std::vector<std::string>::const_iterator iter = forbiddenStrings.begin(); iter != forbiddenStrings.end(); ++iter) {
-        xmlForbiddenStrings += (*iter).c_str();
-        if (++count < forbiddenStrings.size())
-            xmlForbiddenStrings += PASSWORD_EMPTY_STRING;
-    }
+       std::copy(forbiddenStrings.begin(), forbiddenStrings.end(), std::back_inserter(ForbiddenStrings));
+       for (std::vector<std::string>::const_iterator iter = forbiddenStrings.begin(); iter != forbiddenStrings.end(); ++iter) {
+               xmlForbiddenStrings += (*iter).c_str();
+               if (++count < forbiddenStrings.size())
+                       xmlForbiddenStrings += PASSWORD_EMPTY_STRING;
+       }
 
-    if (xmlForbiddenStrings.compare("") == 0) {
-        xmlForbiddenStrings = PASSWORD_EMPTY_STRING;
-    }
+       if (xmlForbiddenStrings.compare("") == 0) {
+               xmlForbiddenStrings = PASSWORD_EMPTY_STRING;
+       }
 
-    return SetPasswordPolicy(__context, "password-forbidden-strings", xmlForbiddenStrings.c_str());
+       return SetPasswordPolicy(__context, "password-forbidden-strings", xmlForbiddenStrings.c_str());
 }
 
 std::vector<std::string> PasswordPolicy::getForbiddenStrings()
 {
-    unsigned int nPos;
-    std::string xmlForbiddenStrings;
+       unsigned int nPos;
+       std::string xmlForbiddenStrings;
 
-    xmlForbiddenStrings = GetPasswordPolicy(__context, "password-forbidden-strings");
-    ForbiddenStrings.clear();
-    while ((nPos = xmlForbiddenStrings.find_first_of(PASSWORD_EMPTY_STRING)) != xmlForbiddenStrings.npos) {
-        if (nPos > 0) {
-            ForbiddenStrings.push_back(xmlForbiddenStrings.substr(0, nPos));
-        }
-        xmlForbiddenStrings = xmlForbiddenStrings.substr(nPos + 3);
-    }
-    if (xmlForbiddenStrings.length() > 0)
-        ForbiddenStrings.push_back(xmlForbiddenStrings.substr(0, nPos));
+       xmlForbiddenStrings = GetPasswordPolicy(__context, "password-forbidden-strings");
+       ForbiddenStrings.clear();
+       while ((nPos = xmlForbiddenStrings.find_first_of(PASSWORD_EMPTY_STRING)) != xmlForbiddenStrings.npos) {
+               if (nPos > 0) {
+                       ForbiddenStrings.push_back(xmlForbiddenStrings.substr(0, nPos));
+               }
+               xmlForbiddenStrings = xmlForbiddenStrings.substr(nPos + 3);
+       }
+       if (xmlForbiddenStrings.length() > 0)
+               ForbiddenStrings.push_back(xmlForbiddenStrings.substr(0, nPos));
 
-    if ((*ForbiddenStrings.begin()).compare(PASSWORD_EMPTY_STRING) == 0)
-        *ForbiddenStrings.begin() = "";
+       if ((*ForbiddenStrings.begin()).compare(PASSWORD_EMPTY_STRING) == 0)
+               *ForbiddenStrings.begin() = "";
 
-    return ForbiddenStrings;
+       return ForbiddenStrings;
 }
 
 PasswordPolicy passwordPolicy(Server::instance());