SignalProtocolKit/AxolotlKit/Classes/State/PreKeyStore.h
2014-10-12 20:25:11 +02:00

23 lines
438 B
Objective-C

//
// PreKeyStore.h
// AxolotlKit
//
// Created by Frederic Jacobs on 12/10/14.
// Copyright (c) 2014 Frederic Jacobs. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "PreKeyRecord.h"
@protocol PreKeyStore <NSObject>
- (PreKeyRecord*)loadPreKey:(int)preKeyId;
- (void)storePreKey:(int)preKeyId preKeyRecord:(PreKeyRecord*)record;
- (BOOL)containsPreKey:(int)preKeyId;
- (void)removePreKey:(int)preKeyId;
@end