summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/DevAPISpecs/SDLFakeSecurityManager.m
blob: e50dab063bc5867fa4f84195819b4e017b7c3b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  SDLFakeSecurityManager.m
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 8/15/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import "SDLFakeSecurityManager.h"

@implementation SDLFakeSecurityManager

- (void)initializeWithAppId:(NSString *)appId completionHandler:(void (^)(NSError *_Nullable error))completionHandler {

}

- (void)stop {

}

- (nullable NSData *)runHandshakeWithClientData:(NSData *)data error:(NSError **)error {
    return nil;
}

- (nullable NSData *)encryptData:(NSData *)data withError:(NSError **)error {
    return nil;
}

- (nullable NSData *)decryptData:(NSData *)data withError:(NSError **)error {
    return nil;
}

+ (NSSet<NSString *> *)availableMakes {
    return [NSSet set];
}

@end