mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 16:22:21 +00:00
Refactored password handling in Document. Now only the composite key is stored and not the plain password and key file URL. This for now breaks the change password dialog a bit. Needs to be addressed.
Started conceptualising for auto type functionality
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
#import "KPKTree.h"
|
||||
#import "KPKMetaData.h"
|
||||
#import "KPKNode+IconImage.h"
|
||||
#import "KPKPassword.h"
|
||||
#import "KPKCompositeKey.h"
|
||||
|
||||
#import "HNHRoundedTextField.h"
|
||||
#import "HNHRoundedSecureTextField.h"
|
||||
@@ -121,7 +121,7 @@
|
||||
|
||||
- (IBAction)benchmarkRounds:(id)sender {
|
||||
[self.benchmarkButton setEnabled:NO];
|
||||
[KPKPassword benchmarkTransformationRounds:1 completionHandler:^(NSUInteger rounds) {
|
||||
[KPKCompositeKey benchmarkTransformationRounds:1 completionHandler:^(NSUInteger rounds) {
|
||||
[self.encryptionRoundsTextField setIntegerValue:rounds];
|
||||
[self.benchmarkButton setEnabled:YES];
|
||||
}];
|
||||
|
||||
Reference in New Issue
Block a user