forked from panva/jose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aes.ts
60 lines (52 loc) · 1.45 KB
/
aes.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
import type QUnit from 'qunit'
import * as env from './env.js'
import type * as jose from '../src/index.js'
import random from './random.js'
import * as roundtrip from './encrypt.js'
export default (QUnit: QUnit, lib: typeof jose) => {
const { module, test } = QUnit
module('aes.ts')
type Vector = [string, boolean]
const algorithms: Vector[] = [
['A128GCM', true],
['A192GCM', !env.isBlink],
['A256GCM', true],
['A128CBC-HS256', true],
['A192CBC-HS384', !env.isBlink],
['A256CBC-HS512', true],
]
function title(vector: Vector) {
const [enc, works] = vector
let result = ''
if (!works) {
result = '[not supported] '
}
result += `${enc}`
return result
}
function secretsFor(enc: string) {
return [
lib.generateSecret(enc),
random(parseInt(enc.endsWith('GCM') ? enc.slice(1, 4) : enc.slice(-3)) >> 3),
]
}
for (const vector of algorithms) {
const [enc, works] = vector
const execute = async (t: typeof QUnit.assert) => {
for await (const secret of secretsFor(enc)) {
await roundtrip.jwe(t, lib, 'dir', enc, secret)
}
}
const jwt = async (t: typeof QUnit.assert) => {
await roundtrip.jwt(t, lib, 'dir', enc, await secretsFor(enc)[0])
}
if (works) {
test(title(vector), execute)
test(`${title(vector)} JWT`, jwt)
} else {
test(title(vector), async (t) => {
await t.rejects(execute(t))
})
}
}
}