tunnelkit/TunnelKit/Sources/Core/CryptoCBC.h

32 lines
676 B
C
Raw Normal View History

2018-08-23 08:19:25 +00:00
//
// CryptoCBC.h
// PIATunnel
//
// Created by Davide De Rosa on 06/07/2018.
// Copyright © 2018 London Trust Media. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Encryption.h"
#import "DataPathEncryption.h"
NS_ASSUME_NONNULL_BEGIN
@interface CryptoCBC : NSObject <Encrypter, Decrypter>
- (instancetype)initWithCipherName:(nonnull NSString *)cipherName
digestName:(nonnull NSString *)digestName;
@end
@interface DataPathCryptoCBC : NSObject <DataPathEncrypter, DataPathDecrypter>
@property (nonatomic, assign) uint32_t peerId;
- (instancetype)initWithCrypto:(nonnull CryptoCBC *)crypto;
@end
NS_ASSUME_NONNULL_END