aboutsummaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-08-04 11:55:04 +0100
committerMark Haines <mark.haines@matrix.org>2015-08-04 11:55:04 +0100
commit41a8fb61afacc57e6da2e2cb427ecdf889dcabdf (patch)
treed5bc029d4ea06d630d0bc0d8045fc91ae148f437 /javascript
parent39c1f3b3559d7fe659a6fe05d5ac5c752501ed37 (diff)
Add sha256 and ed25519_verify methods to javascript bindings
Diffstat (limited to 'javascript')
-rw-r--r--javascript/olm_post.js57
1 files changed, 57 insertions, 0 deletions
diff --git a/javascript/olm_post.js b/javascript/olm_post.js
index ae9fafe..dbb4862 100644
--- a/javascript/olm_post.js
+++ b/javascript/olm_post.js
@@ -50,6 +50,7 @@ function account_method(wrapped) {
}
Account.prototype['free'] = function() {
+ Module['_olm_clear_account'](this.ptr);
free(this.ptr);
}
@@ -172,6 +173,7 @@ function session_method(wrapped) {
}
Session.prototype['free'] = function() {
+ Module['_olm_clear_session'](this.ptr);
free(this.ptr);
}
@@ -323,7 +325,62 @@ Session.prototype['decrypt'] = restore_stack(function(
return Pointer_stringify(plaintext_buffer, plaintext_length);
});
+function Utility() {
+ var size = Module['_olm_utility_size']();
+ this.buf = malloc(size);
+ this.ptr = Module['_olm_utility'](this.buf);
+}
+
+function utility_method(wrapped) {
+ return function() {
+ var result = wrapped.apply(this, arguments);
+ if (result === OLM_ERROR) {
+ var message = Pointer_stringify(
+ Module['_olm_utility_last_error'](arguments[0])
+ );
+ throw new Error("OLM." + message);
+ }
+ return result;
+ }
+}
+
+Utility.prototype['free'] = function() {
+ Module['_olm_clear_utility'](this.ptr);
+ free(this.ptr);
+}
+
+Utility.prototype['sha256'] = restore_stack(function(input) {
+ var output_length = utility_method(Module['_olm_sha256_length'])(this.ptr);
+ var input_array = array_from_string(input);
+ var input_buffer = stack(input_array);
+ var output_buffer = stack(output_length);
+ utility_method(Module['_olm_sha2516'])(
+ this.ptr,
+ input_buffer, input_array.length(),
+ output_buffer, output_length
+ );
+ return Pointer_stringify(output_buffer, output_length);
+});
+
+Utility.prototype['ed25519_verify'] = restore_stack(function(
+ key, message, signature
+) {
+ var key_array = array_from_string(key);
+ var key_buffer = stack(key_array);
+ var message_array = array_from_string(message);
+ var message_buffer = stack(message_array);
+ var signature_array = array_from_string(signature);
+ var signature_buffer = stack(signature_array);
+ utility_method(Module['_olm_ed25519_verify'])(
+ this.ptr,
+ key_buffer, key_array.length,
+ message_buffer, message_array.length,
+ signature_buffer, signature_array.length
+ );
+});
+
olm_exports["Account"] = Account;
olm_exports["Session"] = Session;
+olm_exports["Utility"] = Utility;
}();