// // CryptoCBC.h // TunnelKit // // Created by Davide De Rosa on 06/07/2018. // Copyright © 2018 London Trust Media. All rights reserved. // #import #import "Encryption.h" #import "DataPathEncryption.h" NS_ASSUME_NONNULL_BEGIN @interface CryptoCBC : NSObject - (instancetype)initWithCipherName:(nonnull NSString *)cipherName digestName:(nonnull NSString *)digestName; @end @interface DataPathCryptoCBC : NSObject @property (nonatomic, assign) uint32_t peerId; @property (nonatomic, assign) BOOL LZOFraming DEPRECATED_ATTRIBUTE; - (instancetype)initWithCrypto:(nonnull CryptoCBC *)crypto; @end NS_ASSUME_NONNULL_END