-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory.ts
115 lines (104 loc) · 3.72 KB
/
memory.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// Copyright (C) 2022 Deliberative Technologies P.C.
// SPDX-License-Identifier: Apache-2.0
//
// 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.
import memoryLenToPages from "../utils/memoryLenToPages";
import {
crypto_hash_sha512_BYTES,
crypto_kx_SESSIONKEYBYTES,
crypto_box_x25519_NONCEBYTES,
crypto_box_x25519_PUBLICKEYBYTES,
crypto_box_x25519_SECRETKEYBYTES,
crypto_box_poly1305_AUTHTAGBYTES,
crypto_sign_ed25519_PUBLICKEYBYTES,
crypto_sign_ed25519_SECRETKEYBYTES,
getEncryptedLen,
getDecryptedLen,
getE2EEncryptedSecretBoxEncryptedLen,
getE2EEncryptedSecretBoxDecryptedLen,
} from "../utils/interfaces";
const encryptMemory = (
messageLen: number,
additionalDataLen: number,
): WebAssembly.Memory => {
const sealedBoxLen = getE2EEncryptedSecretBoxEncryptedLen(messageLen);
const memoryLen =
(messageLen +
crypto_sign_ed25519_PUBLICKEYBYTES +
crypto_sign_ed25519_SECRETKEYBYTES +
additionalDataLen +
sealedBoxLen +
1 * (messageLen + crypto_box_poly1305_AUTHTAGBYTES) + // ciphertext malloc'd
2 * crypto_box_x25519_PUBLICKEYBYTES + // x25519 pk's malloc'd
2 * crypto_box_x25519_SECRETKEYBYTES + // x25519 sk + shared malloc'd
crypto_box_x25519_NONCEBYTES) * // nonce malloc'd
Uint8Array.BYTES_PER_ELEMENT;
const pages = memoryLenToPages(memoryLen);
return new WebAssembly.Memory({ initial: pages, maximum: pages });
};
const decryptMemory = (
encryptedLen: number,
additionalDataLen: number,
): WebAssembly.Memory => {
const decryptedLen = getE2EEncryptedSecretBoxDecryptedLen(encryptedLen);
const memoryLen =
(encryptedLen +
crypto_sign_ed25519_SECRETKEYBYTES +
additionalDataLen +
decryptedLen +
2 * crypto_box_x25519_PUBLICKEYBYTES + // malloc'd
crypto_box_x25519_NONCEBYTES + // malloc'd
crypto_box_x25519_SECRETKEYBYTES) * // malloc'd
Uint8Array.BYTES_PER_ELEMENT;
const pages = memoryLenToPages(memoryLen);
return new WebAssembly.Memory({ initial: pages, maximum: pages });
};
const encryptSymmetricKeyMemory = (
messageLen: number,
additionalDataLen: number,
): WebAssembly.Memory => {
const sealedBoxLen = getEncryptedLen(messageLen);
const memoryLen =
(messageLen +
crypto_kx_SESSIONKEYBYTES +
additionalDataLen +
sealedBoxLen +
1 * (messageLen + crypto_box_poly1305_AUTHTAGBYTES) + // malloc'd
2 * crypto_hash_sha512_BYTES + // malloc'd
crypto_box_x25519_NONCEBYTES) * // malloc'd
Uint8Array.BYTES_PER_ELEMENT;
const pages = memoryLenToPages(memoryLen);
return new WebAssembly.Memory({ initial: pages, maximum: pages });
};
const decryptSymmetricKeyMemory = (
encryptedLen: number,
additionalDataLen: number,
): WebAssembly.Memory => {
const decryptedLen = getDecryptedLen(encryptedLen);
const memoryLen =
(encryptedLen +
crypto_kx_SESSIONKEYBYTES +
additionalDataLen +
decryptedLen +
2 * crypto_hash_sha512_BYTES + // malloc'd
crypto_box_x25519_NONCEBYTES) * // malloc'd
Uint8Array.BYTES_PER_ELEMENT;
const pages = memoryLenToPages(memoryLen);
return new WebAssembly.Memory({ initial: pages, maximum: pages });
};
export default {
encryptMemory,
decryptMemory,
encryptSymmetricKeyMemory,
decryptSymmetricKeyMemory,
};