mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
3f4dcecf15
This is increasingly irrelevant due to recent safety number changes, but legacy clients with old messages can still run into this. FIXES: https://github.com/WhisperSystems/Signal-iOS/issues/2346 // FREEBIE
19 lines
337 B
Objective-C
19 lines
337 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "TSErrorMessage.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSFingerprint;
|
|
|
|
@interface TSInvalidIdentityKeyErrorMessage : TSErrorMessage
|
|
|
|
- (void)acceptNewIdentityKey;
|
|
- (nullable NSData *)newIdentityKey;
|
|
- (NSString *)theirSignalId;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|