diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-07-09 18:35:54 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-07-09 18:35:54 +0100 |
commit | 373acefde7be92f86b8294b325519ad916b1e054 (patch) | |
tree | 9d80437d0b059808eb3cd960d4517fdc59ab4731 /javascript/olm_post.js | |
parent | 5634be05074168e33b77246bbc9b60bd683759d8 (diff) |
Add c bindings for the methods for managing one time keys
Diffstat (limited to 'javascript/olm_post.js')
-rw-r--r-- | javascript/olm_post.js | 22 |
1 files changed, 22 insertions, 0 deletions
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( |