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.
18 lines
404 B
Matlab
18 lines
404 B
Matlab
5 years ago
|
#import "ECKeyPair+Utilities.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@implementation ECKeyPair (Utilities)
|
||
|
|
||
|
- (ECKeyPair *)initWithPublicKey:(NSData *)snPublicKey privateKey:(NSData *)snPrivateKey
|
||
|
{
|
||
|
ECKeyPair *keyPair = [[ECKeyPair alloc] init];
|
||
|
[keyPair setValue:snPublicKey forKey:@"publicKey"];
|
||
|
[keyPair setValue:snPrivateKey forKey:@"privateKey"];
|
||
|
return keyPair;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|