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.
23 lines
721 B
C
23 lines
721 B
C
5 years ago
|
//
|
||
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
4 years ago
|
#import <SessionMessagingKit/TSInvalidIdentityKeyErrorMessage.h>
|
||
5 years ago
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
5 years ago
|
@class SNProtoEnvelope;
|
||
5 years ago
|
|
||
|
// DEPRECATED - we no longer create new instances of this class (as of mid-2017); However, existing instances may
|
||
|
// exist, so we should keep this class around to honor their old behavior.
|
||
|
__attribute__((deprecated)) @interface TSInvalidIdentityKeyReceivingErrorMessage : TSInvalidIdentityKeyErrorMessage
|
||
|
|
||
|
#ifdef DEBUG
|
||
5 years ago
|
+ (nullable instancetype)untrustedKeyWithEnvelope:(SNProtoEnvelope *)envelope
|
||
5 years ago
|
withTransaction:(YapDatabaseReadWriteTransaction *)transaction;
|
||
|
#endif
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|