Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 981 Bytes

File metadata and controls

35 lines (22 loc) · 981 Bytes

DKPassword

Build StatusVersionPlatform

DKPassword is a simple password strength checker written in Objective-C.

Adding to Your Project

Simply add the following to your Podfile, if you're using CocoaPods:

pod 'DKPassword'

DKPassword requires ARC.

Working with the DKPassword

Just call this method, it will return password strength, on scale from 0 to 100.

+(int)passwordStrength:(NSString*)password;

Example iOS project

Example iOS project provided.

Screenshot #1

Future (to-do)

  • Add more sophisticated algorithms and calculation rules
  • Describe all algorithms used to calculate password strength in README