]> git.saurik.com Git - apple/security.git/blob - keychain/otctl/EscrowRequestCLI.h
Security-59306.101.1.tar.gz
[apple/security.git] / keychain / otctl / EscrowRequestCLI.h
1
2 #import <Foundation/Foundation.h>
3 #import "keychain/escrowrequest/Framework/SecEscrowRequest.h"
4
5 NS_ASSUME_NONNULL_BEGIN
6
7 @interface EscrowRequestCLI : NSObject
8 @property SecEscrowRequest* escrowRequest;
9
10 - (instancetype)initWithEscrowRequest:(SecEscrowRequest*)er;
11
12 - (long)trigger;
13 - (long)status;
14 - (long)reset;
15 - (long)storePrerecordsInEscrow;
16
17 @end
18
19 NS_ASSUME_NONNULL_END