122867c45c
Quite a lot going on in this PR: * Updates to support recent emscripten, switching to WASM which is now the default * Use emscripten's MODULARIZE option rather than wrapping it ourself, since doing so in pre-post js doesn't work anymore. * Most changes are moving the emscripten runtime functions to top-level calls rather than in the Module object. * Get rid of duplicated NULL_BYTE_PADDING_LENGTH * Fix ciphertext_length used without being declared * Fix things that caused the closure compiler to error, eg. using OLM_OPTIONS without a declaration. * Wait until module is inited to do OLM_ERROR = olm_error() The main BREAKING CHANGE here is that the module now needs to initialise asyncronously (because it has to load the wasm file). require()ing olm now gives a function which needs to be called to create an instance. The resulting object has a promise-like then() method that can be used to detect when the module is ready. (We could use MODULARIZE_INSTANCE to return the module directly as before, rather than the function, but then we don't get the .then() method).
86 lines
2.8 KiB
JavaScript
86 lines
2.8 KiB
JavaScript
/*
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
var Olm = require('../olm')();
|
|
|
|
if (!Object.keys) {
|
|
Object.keys = function(o) {
|
|
var k=[], p;
|
|
for (p in o) if (Object.prototype.hasOwnProperty.call(o,p)) k.push(p);
|
|
return k;
|
|
}
|
|
}
|
|
|
|
describe("pk", function() {
|
|
var encryption, decryption;
|
|
|
|
beforeEach(function(done) {
|
|
Olm.then(function() {
|
|
done();
|
|
});
|
|
|
|
encryption = new Olm.PkEncryption();
|
|
decryption = new Olm.PkDecryption();
|
|
});
|
|
|
|
afterEach(function () {
|
|
if (encryption !== undefined) {
|
|
encryption.free();
|
|
encryption = undefined;
|
|
}
|
|
if (decryption !== undefined) {
|
|
decryption.free();
|
|
decryption = undefined;
|
|
}
|
|
});
|
|
|
|
it('should encrypt and decrypt', function () {
|
|
var TEST_TEXT='têst1';
|
|
var pubkey = decryption.generate_key();
|
|
encryption.set_recipient_key(pubkey);
|
|
var encrypted = encryption.encrypt(TEST_TEXT);
|
|
var decrypted = decryption.decrypt(encrypted.ephemeral, encrypted.mac, encrypted.ciphertext);
|
|
console.log(TEST_TEXT, "->", decrypted);
|
|
expect(decrypted).toEqual(TEST_TEXT);
|
|
|
|
TEST_TEXT='hot beverage: ☕';
|
|
encryption.set_recipient_key(pubkey);
|
|
encrypted = encryption.encrypt(TEST_TEXT);
|
|
decrypted = decryption.decrypt(encrypted.ephemeral, encrypted.mac, encrypted.ciphertext);
|
|
console.log(TEST_TEXT, "->", decrypted);
|
|
expect(decrypted).toEqual(TEST_TEXT);
|
|
});
|
|
|
|
it('should pickle and unpickle', function () {
|
|
var TEST_TEXT = 'têst1';
|
|
var pubkey = decryption.generate_key();
|
|
encryption.set_recipient_key(pubkey);
|
|
var encrypted = encryption.encrypt(TEST_TEXT);
|
|
|
|
var PICKLE_KEY = 'secret_key';
|
|
var pickle = decryption.pickle(PICKLE_KEY);
|
|
|
|
var new_decryption = new Olm.PkDecryption();
|
|
var new_pubkey = new_decryption.unpickle(PICKLE_KEY, pickle);
|
|
expect(new_pubkey).toEqual(pubkey);
|
|
var decrypted = new_decryption.decrypt(encrypted.ephemeral, encrypted.mac, encrypted.ciphertext);
|
|
console.log(TEST_TEXT, "->", decrypted);
|
|
expect(decrypted).toEqual(TEST_TEXT);
|
|
new_decryption.free();
|
|
});
|
|
});
|