2016-04-09 02:24:41 +02:00
|
|
|
//
|
|
|
|
// OLMAccount.h
|
|
|
|
// olm
|
|
|
|
//
|
|
|
|
// Created by Chris Ballinger on 4/8/16.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "OLMSerializable.h"
|
|
|
|
|
2016-04-14 01:53:47 +02:00
|
|
|
@class OLMSession;
|
|
|
|
|
|
|
|
@interface OLMAccount : NSObject <OLMSerializable, NSSecureCoding>
|
2016-04-09 02:24:41 +02:00
|
|
|
|
|
|
|
/** Creates new account */
|
|
|
|
- (instancetype) initNewAccount;
|
|
|
|
|
|
|
|
/** public identity keys. base64 encoded in "curve25519" and "ed25519" keys */
|
|
|
|
- (NSDictionary*) identityKeys;
|
|
|
|
|
|
|
|
/** signs message with ed25519 key for account */
|
2016-04-14 01:53:47 +02:00
|
|
|
- (NSString*) signMessage:(NSData*)messageData;
|
2016-04-09 02:24:41 +02:00
|
|
|
|
|
|
|
/** Public parts of the unpublished one time keys for the account */
|
|
|
|
- (NSDictionary*) oneTimeKeys;
|
|
|
|
|
2016-04-14 01:53:47 +02:00
|
|
|
- (BOOL) removeOneTimeKeysForSession:(OLMSession*)session;
|
|
|
|
|
2016-04-09 02:24:41 +02:00
|
|
|
/** Marks the current set of one time keys as being published. */
|
2016-10-13 16:10:00 +02:00
|
|
|
- (void) markOneTimeKeysAsPublished;
|
2016-04-09 02:24:41 +02:00
|
|
|
|
|
|
|
/** The largest number of one time keys this account can store. */
|
|
|
|
- (NSUInteger) maxOneTimeKeys;
|
|
|
|
|
|
|
|
/** Generates a number of new one time keys. If the total number of keys stored
|
|
|
|
* by this account exceeds -maxOneTimeKeys then the old keys are
|
|
|
|
* discarded. */
|
|
|
|
- (void) generateOneTimeKeys:(NSUInteger)numberOfKeys;
|
|
|
|
|
|
|
|
@end
|