From 373acefde7be92f86b8294b325519ad916b1e054 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Thu, 9 Jul 2015 18:35:54 +0100 Subject: Add c bindings for the methods for managing one time keys --- javascript/olm_post.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'javascript/olm_post.js') diff --git a/javascript/olm_post.js b/javascript/olm_post.js index 7bcc580..aa28f86 100644 --- a/javascript/olm_post.js +++ b/javascript/olm_post.js @@ -100,6 +100,28 @@ Account.prototype['one_time_keys'] = restore_stack(function() { return Pointer_stringify(keys, keys_length); }); +Account.prototype['mark_keys_as_published'] = restore_stack(function() { + account_method(Module['_olm_account_mark_keys_as_published'])(this.ptr); +}); + +Account.prototype['max_number_of_one_time_keys'] = restore_stack(function() { + account_method(Module['_olm_account_max_number_of_one_time_keys'])( + this.ptr + ); +}); + +Account.prototype['generate_one_time_keys'] = restore_stack(function( + number_of_keys +) { + var random_length = account_method( + Module['_olm_account_generate_one_time_keys_random_length'] + )(this.ptr, number_of_keys); + var random = random_stack(random_length); + account_method(Module['_olm_account_generate_one_time_keys'])( + this.ptr, number_of_keys, random, random_length + ); +}); + Account.prototype['pickle'] = restore_stack(function(key) { var key_array = array_from_string(key); var pickle_length = account_method( -- cgit v1.2.3