2017-01-11 23:22:11 +01:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations 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.
|
|
|
|
*/
|
|
|
|
|
2021-06-29 14:11:58 +02:00
|
|
|
import { TextEncoder } from "util";
|
2019-12-17 12:24:37 +01:00
|
|
|
import nodeCrypto from "crypto";
|
|
|
|
import { Crypto } from "@peculiar/webcrypto";
|
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
import type * as MegolmExportEncryptionExport from "../../src/utils/MegolmExportEncryption";
|
|
|
|
|
2019-12-17 12:24:37 +01:00
|
|
|
const webCrypto = new Crypto();
|
2019-12-16 12:55:01 +01:00
|
|
|
|
2023-02-13 18:01:43 +01:00
|
|
|
function getRandomValues<T extends ArrayBufferView | null>(buf: T): T {
|
2022-05-02 09:57:35 +02:00
|
|
|
// @ts-ignore fussy generics
|
2019-12-17 12:24:37 +01:00
|
|
|
return nodeCrypto.randomFillSync(buf);
|
2019-12-16 12:55:01 +01:00
|
|
|
}
|
2017-01-11 23:22:11 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
const TEST_VECTORS = [
|
2017-01-11 23:22:11 +01:00
|
|
|
[
|
|
|
|
"plain",
|
|
|
|
"password",
|
2017-06-08 14:12:27 +02:00
|
|
|
"-----BEGIN MEGOLM SESSION DATA-----\n" +
|
2022-12-12 12:24:14 +01:00
|
|
|
"AXNhbHRzYWx0c2FsdHNhbHSIiIiIiIiIiIiIiIiIiIiIAAAACmIRUW2OjZ3L2l6j9h0lHlV3M2dx\n" +
|
|
|
|
"cissyYBxjsfsAndErh065A8=\n" +
|
|
|
|
"-----END MEGOLM SESSION DATA-----",
|
2017-01-11 23:22:11 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"Hello, World",
|
|
|
|
"betterpassword",
|
2017-06-08 14:12:27 +02:00
|
|
|
"-----BEGIN MEGOLM SESSION DATA-----\n" +
|
2022-12-12 12:24:14 +01:00
|
|
|
"AW1vcmVzYWx0bW9yZXNhbHT//////////wAAAAAAAAAAAAAD6KyBpe1Niv5M5NPm4ZATsJo5nghk\n" +
|
|
|
|
"KYu63a0YQ5DRhUWEKk7CcMkrKnAUiZny\n" +
|
|
|
|
"-----END MEGOLM SESSION DATA-----",
|
2017-01-11 23:22:11 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"alphanumericallyalphanumericallyalphanumericallyalphanumerically",
|
|
|
|
"SWORDFISH",
|
2017-06-08 14:12:27 +02:00
|
|
|
"-----BEGIN MEGOLM SESSION DATA-----\n" +
|
2022-12-12 12:24:14 +01:00
|
|
|
"AXllc3NhbHR5Z29vZG5lc3P//////////wAAAAAAAAAAAAAD6OIW+Je7gwvjd4kYrb+49gKCfExw\n" +
|
|
|
|
"MgJBMD4mrhLkmgAngwR1pHjbWXaoGybtiAYr0moQ93GrBQsCzPbvl82rZhaXO3iH5uHo/RCEpOqp\n" +
|
|
|
|
"Pgg29363BGR+/Ripq/VCLKGNbw==\n" +
|
|
|
|
"-----END MEGOLM SESSION DATA-----",
|
2017-01-11 23:22:11 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"alphanumericallyalphanumericallyalphanumericallyalphanumerically",
|
2017-06-08 14:12:27 +02:00
|
|
|
"passwordpasswordpasswordpasswordpasswordpasswordpasswordpasswordpassword" +
|
2022-12-12 12:24:14 +01:00
|
|
|
"passwordpasswordpasswordpasswordpasswordpasswordpasswordpasswordpassword" +
|
|
|
|
"passwordpasswordpasswordpasswordpasswordpasswordpasswordpasswordpassword" +
|
|
|
|
"passwordpasswordpasswordpasswordpassword",
|
2017-06-08 14:12:27 +02:00
|
|
|
"-----BEGIN MEGOLM SESSION DATA-----\n" +
|
2022-12-12 12:24:14 +01:00
|
|
|
"Af//////////////////////////////////////////AAAD6IAZJy7IQ7Y0idqSw/bmpngEEVVh\n" +
|
|
|
|
"gsH+8ptgqxw6ZVWQnohr8JsuwH9SwGtiebZuBu5smPCO+RFVWH2cQYslZijXv/BEH/txvhUrrtCd\n" +
|
|
|
|
"bWnSXS9oymiqwUIGs08sXI33ZA==\n" +
|
|
|
|
"-----END MEGOLM SESSION DATA-----",
|
2017-06-08 14:12:27 +02:00
|
|
|
],
|
2019-12-16 12:12:48 +01:00
|
|
|
];
|
2017-01-11 23:22:11 +01:00
|
|
|
|
2022-05-02 09:57:35 +02:00
|
|
|
function stringToArray(s: string): ArrayBufferLike {
|
2017-01-11 23:22:11 +01:00
|
|
|
return new TextEncoder().encode(s).buffer;
|
|
|
|
}
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("MegolmExportEncryption", function () {
|
2023-02-13 12:39:16 +01:00
|
|
|
let MegolmExportEncryption: typeof MegolmExportEncryptionExport;
|
2019-12-16 12:12:48 +01:00
|
|
|
|
2022-11-04 11:48:08 +01:00
|
|
|
beforeEach(() => {
|
2023-04-20 10:25:53 +02:00
|
|
|
Object.defineProperty(window, "crypto", {
|
|
|
|
value: {
|
|
|
|
getRandomValues,
|
|
|
|
randomUUID: jest.fn().mockReturnValue("not-random-uuid"),
|
|
|
|
subtle: webCrypto.subtle,
|
|
|
|
},
|
|
|
|
});
|
2019-12-16 12:12:48 +01:00
|
|
|
MegolmExportEncryption = require("../../src/utils/MegolmExportEncryption");
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("decrypt", function () {
|
|
|
|
it("should handle missing header", function () {
|
|
|
|
const input = stringToArray(`-----`);
|
|
|
|
return MegolmExportEncryption.decryptMegolmKeyFile(input, "").then(
|
|
|
|
(res) => {
|
|
|
|
throw new Error("expected to throw");
|
|
|
|
},
|
|
|
|
(error) => {
|
|
|
|
expect(error.message).toEqual("Header line not found");
|
|
|
|
},
|
|
|
|
);
|
2017-01-11 23:22:11 +01:00
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("should handle missing trailer", function () {
|
|
|
|
const input = stringToArray(`-----BEGIN MEGOLM SESSION DATA-----
|
2017-01-11 23:22:11 +01:00
|
|
|
-----`);
|
2022-12-12 12:24:14 +01:00
|
|
|
return MegolmExportEncryption.decryptMegolmKeyFile(input, "").then(
|
|
|
|
(res) => {
|
|
|
|
throw new Error("expected to throw");
|
|
|
|
},
|
|
|
|
(error) => {
|
|
|
|
expect(error.message).toEqual("Trailer line not found");
|
|
|
|
},
|
|
|
|
);
|
2017-01-11 23:22:11 +01:00
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("should handle a too-short body", function () {
|
|
|
|
const input = stringToArray(`-----BEGIN MEGOLM SESSION DATA-----
|
2017-01-31 13:30:30 +01:00
|
|
|
AXNhbHRzYWx0c2FsdHNhbHSIiIiIiIiIiIiIiIiIiIiIAAAACmIRUW2OjZ3L2l6j9h0lHlV3M2dx
|
|
|
|
cissyYBxjsfsAn
|
|
|
|
-----END MEGOLM SESSION DATA-----
|
|
|
|
`);
|
2022-12-12 12:24:14 +01:00
|
|
|
return MegolmExportEncryption.decryptMegolmKeyFile(input, "").then(
|
|
|
|
(res) => {
|
|
|
|
throw new Error("expected to throw");
|
|
|
|
},
|
|
|
|
(error) => {
|
|
|
|
expect(error.message).toEqual("Invalid file: too short");
|
|
|
|
},
|
|
|
|
);
|
2017-01-31 13:30:30 +01:00
|
|
|
});
|
|
|
|
|
2019-12-17 12:24:37 +01:00
|
|
|
// TODO find a subtlecrypto shim which doesn't break this test
|
2022-12-12 12:24:14 +01:00
|
|
|
it.skip("should decrypt a range of inputs", function () {
|
2023-02-13 18:01:43 +01:00
|
|
|
function next(i: number): Promise<string | undefined> | undefined {
|
2017-01-11 23:22:11 +01:00
|
|
|
if (i >= TEST_VECTORS.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const [plain, password, input] = TEST_VECTORS[i];
|
2022-12-12 12:24:14 +01:00
|
|
|
return MegolmExportEncryption.decryptMegolmKeyFile(stringToArray(input), password).then((decrypted) => {
|
2017-01-11 23:22:11 +01:00
|
|
|
expect(decrypted).toEqual(plain);
|
2022-12-12 12:24:14 +01:00
|
|
|
return next(i + 1);
|
2017-06-08 14:12:27 +02:00
|
|
|
});
|
|
|
|
}
|
2023-02-13 18:01:43 +01:00
|
|
|
next(0);
|
2017-01-11 23:22:11 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("encrypt", function () {
|
|
|
|
it("should round-trip", function () {
|
|
|
|
const input = "words words many words in plain text here".repeat(100);
|
|
|
|
|
|
|
|
const password = "my super secret passphrase";
|
|
|
|
|
|
|
|
return MegolmExportEncryption.encryptMegolmKeyFile(input, password, { kdf_rounds: 1000 })
|
|
|
|
.then((ciphertext) => {
|
|
|
|
return MegolmExportEncryption.decryptMegolmKeyFile(ciphertext, password);
|
|
|
|
})
|
|
|
|
.then((plaintext) => {
|
|
|
|
expect(plaintext).toEqual(input);
|
|
|
|
});
|
2017-01-11 23:22:11 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|