mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
952 B
Objective-C
28 lines
952 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface FingerprintViewScanController : OWSViewController
|
|
|
|
- (void)configureWithRecipientId:(NSString *)recipientId NS_SWIFT_NAME(configure(recipientId:));
|
|
|
|
+ (void)showVerificationSucceeded:(UIViewController *)viewController
|
|
identityKey:(NSData *)identityKey
|
|
recipientId:(NSString *)recipientId
|
|
contactName:(NSString *)contactName
|
|
tag:(NSString *)tag;
|
|
|
|
+ (void)showVerificationFailedWithError:(NSError *)error
|
|
viewController:(UIViewController *)viewController
|
|
retryBlock:(void (^_Nullable)(void))retryBlock
|
|
cancelBlock:(void (^_Nonnull)(void))cancelBlock
|
|
tag:(NSString *)tag;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|