Orchestration SDK 5.7.0
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>
12
13@protocol LocalAuthenticationDelegate;
14
18NS_REFINED_FOR_SWIFT
19@interface LocalAuthenticationParams : NSObject
20
25@property (nonatomic, strong) OrchestrationUser *orchestrationUser;
26
30@property (nonatomic) CryptoAppIndex cryptoAppIndex;
31
35@property (nonatomic, strong) NSString* challenge;
36
40@property (nonatomic) ProtectionType protectionType;
41
45@property (nonatomic, weak) id<LocalAuthenticationDelegate> localAuthenticationDelegate;
46
47@end
CryptoAppIndex
Definition: CryptoAppIndex.h:15
ProtectionType
Definition: ProtectionType.h:12
Definition: LocalAuthenticationParams.h:20
OrchestrationUser * orchestrationUser
Definition: LocalAuthenticationParams.h:25
CryptoAppIndex cryptoAppIndex
Definition: LocalAuthenticationParams.h:30
id< LocalAuthenticationDelegate > localAuthenticationDelegate
Definition: LocalAuthenticationParams.h:45
ProtectionType protectionType
Definition: LocalAuthenticationParams.h:40
NSString * challenge
Definition: LocalAuthenticationParams.h:35
Definition: OrchestrationUser.h:17