mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 20:02:27 +00:00
20 lines
471 B
Objective-C
20 lines
471 B
Objective-C
//
|
|
// MPPasswordInputController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 17.02.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
|
|
@class KPKCompositeKey;
|
|
|
|
@interface MPPasswordInputController : MPViewController
|
|
|
|
typedef BOOL (^passwordInputCompletionBlock)(NSString *password, NSURL *keyURL, NSError *__autoreleasing*error);
|
|
|
|
- (void)requestPassword:(passwordInputCompletionBlock)completionHandler;
|
|
|
|
@end
|