mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-23 16:19:29 +00:00
Custom String in Password Generator View are now filtered to only include unique characters
16 lines
337 B
Objective-C
16 lines
337 B
Objective-C
//
|
|
// PasswordCreatorView.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 31.03.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
|
|
@interface MPPasswordCreatorViewController : MPViewController <NSTextFieldDelegate>
|
|
|
|
@property (copy, readonly) NSString *generatedPassword;
|
|
|
|
@end
|