android.app.admin.DevicePolicyManager#PASSWORD_QUALITY_COMPLEX源码实例Demo

下面列出了android.app.admin.DevicePolicyManager#PASSWORD_QUALITY_COMPLEX 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: android_9.0.0_r45   文件: LockSettingsService.java
/**
 * Returns the lowest password quality that still presents the same UI for entering it.
 *
 * For the FRP credential, we do not want to leak the actual quality of the password, only what
 * kind of UI it requires. However, when migrating, we only know the actual quality, not the
 * originally requested quality; since this is only used to determine what input variant to
 * present to the user, we just assume the lowest possible quality was requested.
 */
private int redactActualQualityToMostLenientEquivalentQuality(int quality) {
    switch (quality) {
        case DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC:
        case DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC:
        case DevicePolicyManager.PASSWORD_QUALITY_COMPLEX:
            return DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC;
        case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC:
        case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX:
            return DevicePolicyManager.PASSWORD_QUALITY_NUMERIC;
        case DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED:
        case DevicePolicyManager.PASSWORD_QUALITY_SOMETHING:
        case DevicePolicyManager.PASSWORD_QUALITY_MANAGED:
        case DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK:
        default:
            return quality;
    }
}
 
源代码2 项目: GravityBox   文件: KeyguardStateMonitor.java
public boolean keyguardEnforcedByDevicePolicy() {
    DevicePolicyManager dpm = (DevicePolicyManager)
            mContext.getSystemService(Context.DEVICE_POLICY_SERVICE);
    if (dpm != null) {
        int passwordQuality = dpm.getPasswordQuality(null);
        switch (passwordQuality) {
            case DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC:
            case DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC:
            case DevicePolicyManager.PASSWORD_QUALITY_COMPLEX:
            case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC:
            case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX:
            case DevicePolicyManager.PASSWORD_QUALITY_SOMETHING:
                return true;
        }
    }
    return false;
}