More work on password generation

This commit is contained in:
michael starke
2013-04-02 14:53:46 +02:00
parent a70aedb51e
commit b6504b3dc4
22 changed files with 1043 additions and 556 deletions

View File

@@ -0,0 +1,26 @@
//
// PasswordCreatorView.m
// MacPass
//
// Created by Michael Starke on 31.03.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPPasswordCreatorViewController.h"
@interface MPPasswordCreatorViewController ()
@end
@implementation MPPasswordCreatorViewController
- (id)init
{
self = [super initWithNibName:@"PasswordCreatorView" bundle:nil];
if (self) {
// setup
}
return self;
}
@end