Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
LocalAuthenticationParams.h
Go to the documentation of this file.
1
2//
3// Copyright (c) since 1999. VASCO DATA SECURITY
4// All rights reserved. http://www.vasco.com
5//
7
8#import <Foundation/Foundation.h>
9#import <MSSOrchestration/CryptoAppIndex.h>
10#import <MSSOrchestration/ProtectionType.h>
11#import <MSSOrchestration/OrchestrationUser.h>
12NS_ASSUME_NONNULL_BEGIN
13
14@protocol LocalAuthenticationDelegate;
15
19NS_REFINED_FOR_SWIFT
20@interface LocalAuthenticationParams : NSObject
21
26@property (nonatomic, strong) OrchestrationUser *orchestrationUser;
27
31@property (nonatomic) CryptoAppIndex cryptoAppIndex;
32
36@property (nonatomic, strong, nullable) NSString* challenge;
37
41@property (nonatomic) ProtectionType protectionType;
42
46@property (nonatomic, weak) id<LocalAuthenticationDelegate> localAuthenticationDelegate;
47
48@end
49
50NS_ASSUME_NONNULL_END
CryptoAppIndex
Definition CryptoAppIndex.h:15
ProtectionType
Definition ProtectionType.h:12
Definition LocalAuthenticationParams.h:21
OrchestrationUser * orchestrationUser
Definition LocalAuthenticationParams.h:26
CryptoAppIndex cryptoAppIndex
Definition LocalAuthenticationParams.h:31
id< LocalAuthenticationDelegate > localAuthenticationDelegate
Definition LocalAuthenticationParams.h:46
ProtectionType protectionType
Definition LocalAuthenticationParams.h:41
NSString * challenge
Definition LocalAuthenticationParams.h:36
Definition OrchestrationUser.h:17