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.
53 lines
2.0 KiB
C
53 lines
2.0 KiB
C
5 years ago
|
// Created by Michael Kirk on 9/14/16.
|
||
|
// Copyright © 2016 Open Whisper Systems. All rights reserved.
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@class UIImage;
|
||
|
|
||
|
@interface OWSFingerprint : NSObject
|
||
|
|
||
|
#pragma mark - Initializers
|
||
|
|
||
|
- (instancetype)init NS_UNAVAILABLE;
|
||
|
|
||
|
- (instancetype)initWithMyStableId:(NSString *)myStableId
|
||
|
myIdentityKey:(NSData *)myIdentityKeyWithoutKeyType
|
||
|
theirStableId:(NSString *)theirStableId
|
||
|
theirIdentityKey:(NSData *)theirIdentityKeyWithoutKeyType
|
||
|
theirName:(NSString *)theirName
|
||
|
hashIterations:(uint32_t)hashIterations NS_DESIGNATED_INITIALIZER;
|
||
|
|
||
|
+ (instancetype)fingerprintWithMyStableId:(NSString *)myStableId
|
||
|
myIdentityKey:(NSData *)myIdentityKeyWithoutKeyType
|
||
|
theirStableId:(NSString *)theirStableId
|
||
|
theirIdentityKey:(NSData *)theirIdentityKeyWithoutKeyType
|
||
|
theirName:(NSString *)theirName
|
||
|
hashIterations:(uint32_t)hashIterations;
|
||
|
|
||
|
+ (instancetype)fingerprintWithMyStableId:(NSString *)myStableId
|
||
|
myIdentityKey:(NSData *)myIdentityKeyWithoutKeyType
|
||
|
theirStableId:(NSString *)theirStableId
|
||
|
theirIdentityKey:(NSData *)theirIdentityKeyWithoutKeyType
|
||
|
theirName:(NSString *)theirName;
|
||
|
|
||
|
#pragma mark - Properties
|
||
|
|
||
|
@property (nonatomic, readonly) NSData *myStableIdData;
|
||
|
@property (nonatomic, readonly) NSData *myIdentityKey;
|
||
|
@property (nonatomic, readonly) NSString *theirStableId;
|
||
|
@property (nonatomic, readonly) NSData *theirStableIdData;
|
||
|
@property (nonatomic, readonly) NSData *theirIdentityKey;
|
||
|
@property (nonatomic, readonly) NSString *displayableText;
|
||
|
@property (nullable, nonatomic, readonly) UIImage *image;
|
||
|
|
||
|
#pragma mark - Instance Methods
|
||
|
|
||
|
- (BOOL)matchesLogicalFingerprintsData:(NSData *)data error:(NSError **)error;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|