-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBiometricAuthentication.swift
84 lines (55 loc) · 2.28 KB
/
BiometricAuthentication.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//
// BiometricAuthentication.swift
//
//
// Created by Anup Gupta on 26/07/18.
// Copyright © 2018 Geekguns. All rights reserved.
import UIKit
import LocalAuthentication
class BiometricAuthentication {
private static var _instance: BiometricAuthentication?;
private init() {
}
public static func getSingleton() -> BiometricAuthentication {
if (BiometricAuthentication._instance == nil) {
BiometricAuthentication._instance = BiometricAuthentication.init();
}
return BiometricAuthentication._instance!;
}
func authenticate(authentication : @escaping (Bool) -> ()) {
// Get a fresh context for each login. If you use the same context on multiple attempts
// (by commenting out the next line), then a previously successful authentication
// causes the next policy evaluation to succeed without testing biometry again.
// That's usually not what you want.
let context = LAContext()
context.localizedCancelTitle = "Cancel"
// First check if we have the needed hardware support.
var error: NSError?
if context.canEvaluatePolicy(.deviceOwnerAuthentication, error: &error) {
let reason = "to access app"
context.evaluatePolicy(.deviceOwnerAuthentication, localizedReason: reason ) { success, error in
if success {
print("Success")
authentication(true)
} else {
print(error?.localizedDescription ?? "Failed to authenticate")
authentication(false)
}
}
} else {
authentication(false)
print(error?.localizedDescription ?? "Can't evaluate policy")
}
}
}
// Below methed to use Biometric Authentication
/*
func checkForBiometricAuthentication() {
BiometricAuthentication.getSingleton().authenticate( authentication: {(authenticationResult) -> Void in
print("authenticationResult :::",authenticationResult)
if authenticationResult {
print("Success")
}
})
}
*/