-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathAddNewVirtualYubiKeyController.m
54 lines (39 loc) · 1.57 KB
/
AddNewVirtualYubiKeyController.m
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
//
// AddNewVirtualYubiKeyController.m
// Strongbox
//
// Created by Strongbox on 17/10/2020.
// Copyright © 2014-2021 Mark McGuill. All rights reserved.
//
#import "AddNewVirtualYubiKeyController.h"
#import "Utils.h"
#import "NSData+Extensions.h"
#import "NSString+Extensions.h"
#import "VirtualYubiKeys.h"
@interface AddNewVirtualYubiKeyController ()
@property (weak, nonatomic) IBOutlet UITextField *textFieldName;
@property (weak, nonatomic) IBOutlet UITextField *textFieldSecret;
@property (weak, nonatomic) IBOutlet UISwitch *switchAutoFillOnly;
@property (weak, nonatomic) IBOutlet UISwitch *switchFixedLengthOnly;
@property (weak, nonatomic) IBOutlet UIBarButtonItem *buttonAdd;
@end
@implementation AddNewVirtualYubiKeyController
- (void)viewDidLoad {
[super viewDidLoad];
[self validateUi];
}
- (void)validateUi {
BOOL valid = self.textFieldName.text.length > 0 && self.textFieldSecret.text.length && self.textFieldSecret.text.isHexString;
self.buttonAdd.enabled = valid;
}
- (IBAction)onTextChanged:(id)sender {
[self validateUi];
}
- (IBAction)onAdd:(id)sender {
NSData* yubikeySecretData = self.textFieldSecret.text.dataFromHex;
NSString* hexSecret = [NSString stringWithFormat:@"%@%@", self.switchFixedLengthOnly.on ? @"P" : @"", yubikeySecretData.upperHexString];
VirtualYubiKey *key = [VirtualYubiKey keyWithName:self.textFieldName.text secret:hexSecret autoFillOnly:self.switchAutoFillOnly.on];
[VirtualYubiKeys.sharedInstance addKey:key];
[self.navigationController popViewControllerAnimated:YES];
}
@end