mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 10:32:26 +00:00
18 lines
328 B
Objective-C
18 lines
328 B
Objective-C
//
|
|
// NSString+MPPasswordAnalysis.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 29.03.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "NSString+MPPasswordAnalysis.h"
|
|
|
|
@implementation NSString (MPPasswordAnalysis)
|
|
|
|
- (MPPasswordStrength)passwordStrenght {
|
|
return MPPasswordOK;
|
|
}
|
|
|
|
@end
|