├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── BiometricAuthentication.podspec ├── BiometricAuthentication.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── BiometricAuthentication ├── BiometricAuthentication.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── BiometricAuthentication.xcscheme └── BiometricAuthentication │ ├── Authentication │ ├── AuthenticationErrors.swift │ └── BioMetricAuthenticator.swift │ ├── BiometricAuthentication.h │ ├── Constants │ └── BiometricAuthenticationConstants.swift │ └── Info.plist ├── BiometricAuthenticationExample ├── BiometricAuthenticationExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── BiometricAuthenticationExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Utilities │ ├── NSObjectExtension.swift │ └── UIAlertControllerExtension.swift │ └── ViewController.swift ├── Images ├── image1.png ├── image2.png └── image3.png ├── LICENSE ├── Package.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BiometricAuthentication.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication.podspec -------------------------------------------------------------------------------- /BiometricAuthentication.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BiometricAuthentication.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication.xcodeproj/xcshareddata/xcschemes/BiometricAuthentication.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication.xcodeproj/xcshareddata/xcschemes/BiometricAuthentication.xcscheme -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication/Authentication/AuthenticationErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication/Authentication/AuthenticationErrors.swift -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication/Authentication/BioMetricAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication/Authentication/BioMetricAuthenticator.swift -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication/BiometricAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication/BiometricAuthentication.h -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication/Constants/BiometricAuthenticationConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication/Constants/BiometricAuthenticationConstants.swift -------------------------------------------------------------------------------- /BiometricAuthentication/BiometricAuthentication/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthentication/BiometricAuthentication/Info.plist -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/AppDelegate.swift -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/Info.plist -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/Utilities/NSObjectExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/Utilities/NSObjectExtension.swift -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/Utilities/UIAlertControllerExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/Utilities/UIAlertControllerExtension.swift -------------------------------------------------------------------------------- /BiometricAuthenticationExample/BiometricAuthenticationExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/BiometricAuthenticationExample/BiometricAuthenticationExample/ViewController.swift -------------------------------------------------------------------------------- /Images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/Images/image1.png -------------------------------------------------------------------------------- /Images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/Images/image2.png -------------------------------------------------------------------------------- /Images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/Images/image3.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/HEAD/README.md --------------------------------------------------------------------------------