Signal-iOS/SignalServiceKit/Storage/AxolotlStore/Model/LegacyReceivingChain.h
2024-03-27 12:27:06 -05:00

19 lines
455 B
Objective-C

//
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
#import <Foundation/Foundation.h>
@class LegacyChainKey;
@interface LegacyReceivingChain : NSObject <NSSecureCoding>
- (instancetype)initWithChainKey:(LegacyChainKey *)chainKey senderRatchetKey:(NSData *)senderRatchet;
@property NSMutableArray *messageKeysList;
@property NSData *senderRatchetKey;
@property (readonly, nonatomic) LegacyChainKey *chainKey;
@end