forked from panva/jose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpbes2.ts
49 lines (42 loc) · 1.31 KB
/
pbes2.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
import type QUnit from 'qunit'
import * as env from './env.js'
import type * as jose from '../src/index.js'
import * as roundtrip from './encrypt.js'
export default (QUnit: QUnit, lib: typeof jose, keys: typeof jose) => {
const { module, test } = QUnit
module('pbes2.ts')
type Vector = [string, boolean]
const algorithms: Vector[] = [
['PBES2-HS256+A128KW', !env.isElectron],
['PBES2-HS384+A192KW', !env.isBlink && !env.isElectron],
['PBES2-HS512+A256KW', !env.isElectron],
]
function title(vector: Vector) {
const [alg, works] = vector
let result = ''
if (!works) {
result = '[not supported] '
}
result += `${alg}`
return result
}
for (const vector of algorithms) {
const [alg, works] = vector
const execute = async (t: typeof QUnit.assert) => {
const password = new TextEncoder().encode('letmein')
await roundtrip.jwe(t, lib, keys, alg, 'A128GCM', password)
}
const jwt = async (t: typeof QUnit.assert) => {
const password = new TextEncoder().encode('letmein')
await roundtrip.jwt(t, lib, keys, alg, 'A128GCM', password)
}
if (works) {
test(title(vector), execute)
test(`${title(vector)} JWT`, jwt)
} else {
test(title(vector), async (t) => {
await t.rejects(execute(t))
})
}
}
}