]> git.saurik.com Git - apple/security.git/blob
af5f20897e4c07b8172f231e978d8214fb26ca7f
[apple/security.git] /
1 // Copyright (C) 2018 Apple Inc. All Rights Reserved.
2
3 #import <Foundation/Foundation.h>
4
5 NS_ASSUME_NONNULL_BEGIN
6
7 @protocol OctagonTestHarnessXPCServiceProtocol<NSObject>
8
9 // Trieste-compliant Octagon reset
10 - (void)octagonReset:(NSString *)altDSID complete:(void (^)(NSNumber *, NSError * _Nullable))complete;
11 - (void)octagonPeerID:(NSString *)altDSID complete:(void (^)(NSString *, NSError *_Nullable))complete;
12 - (void)octagonInCircle:(NSString *)altDSID complete:(void (^)(NSNumber *, NSError * _Nullable))complete;
13
14 @end
15
16 NS_ASSUME_NONNULL_END