mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
689 B
Objective-C
27 lines
689 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "SignedPrekeyRecord.h"
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol SignedPreKeyStore <NSObject>
|
|
|
|
- (SignedPreKeyRecord *)throws_loadSignedPrekey:(int)signedPreKeyId NS_SWIFT_UNAVAILABLE("throws objc exceptions");
|
|
|
|
- (nullable SignedPreKeyRecord *)loadSignedPrekeyOrNil:(int)signedPreKeyId;
|
|
|
|
- (NSArray<SignedPreKeyRecord *> *)loadSignedPreKeys;
|
|
|
|
- (void)storeSignedPreKey:(int)signedPreKeyId signedPreKeyRecord:(SignedPreKeyRecord *)signedPreKeyRecord;
|
|
|
|
- (BOOL)containsSignedPreKey:(int)signedPreKeyId;
|
|
|
|
- (void)removeSignedPreKey:(int)signedPrekeyId;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|