Skip to content
Snippets Groups Projects
Commit d1060af8 authored by manuroe's avatar manuroe
Browse files

OLMKit: Renamed [OLMAccount markKeysAsPublished] into [OLMAccount...

OLMKit: Renamed [OLMAccount markKeysAsPublished] into [OLMAccount markOneTimeKeysAsPublished] and implemented it
parent 3cb01fd2
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@
- (BOOL) removeOneTimeKeysForSession:(OLMSession*)session;
/** Marks the current set of one time keys as being published. */
- (void) markKeysAsPublished;
- (void) markOneTimeKeysAsPublished;
/** The largest number of one time keys this account can store. */
- (NSUInteger) maxOneTimeKeys;
......
......@@ -157,6 +157,11 @@
return YES;
}
- (void)markOneTimeKeysAsPublished
{
olm_account_mark_keys_as_published(self.account);
}
#pragma mark OLMSerializable
/** Initializes from encrypted serialized data. Will throw error if invalid key or invalid base64. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment