deno.land / x / jose@v5.2.4 / lib / decrypt_key_management.ts

decrypt_key_management.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import { unwrap as aesKw } from '../runtime/aeskw.ts'import * as ECDH from '../runtime/ecdhes.ts'import { decrypt as pbes2Kw } from '../runtime/pbes2kw.ts'import { decrypt as rsaEs } from '../runtime/rsaes.ts'import { decode as base64url } from '../runtime/base64url.ts'
import type { DecryptOptions, JWEHeaderParameters, KeyLike, JWK } from '../types.d.ts'import { JOSENotSupported, JWEInvalid } from '../util/errors.ts'import { bitLength as cekLength } from '../lib/cek.ts'import { importJWK } from '../key/import.ts'import checkKeyType from './check_key_type.ts'import isObject from './is_object.ts'import { unwrap as aesGcmKw } from './aesgcmkw.ts'
async function decryptKeyManagement( alg: string, key: KeyLike | Uint8Array, encryptedKey: Uint8Array | undefined, joseHeader: JWEHeaderParameters, options?: DecryptOptions,): Promise<KeyLike | Uint8Array> { checkKeyType(alg, key, 'decrypt')
switch (alg) { case 'dir': { // Direct Encryption if (encryptedKey !== undefined) throw new JWEInvalid('Encountered unexpected JWE Encrypted Key')
return key } case 'ECDH-ES': // Direct Key Agreement if (encryptedKey !== undefined) throw new JWEInvalid('Encountered unexpected JWE Encrypted Key')
case 'ECDH-ES+A128KW': case 'ECDH-ES+A192KW': case 'ECDH-ES+A256KW': { // Direct Key Agreement if (!isObject<JWK>(joseHeader.epk)) throw new JWEInvalid(`JOSE Header "epk" (Ephemeral Public Key) missing or invalid`)
if (!ECDH.ecdhAllowed(key)) throw new JOSENotSupported( 'ECDH with the provided key is not allowed or not supported by your javascript runtime', )
const epk = await importJWK(joseHeader.epk, alg) let partyUInfo!: Uint8Array let partyVInfo!: Uint8Array
if (joseHeader.apu !== undefined) { if (typeof joseHeader.apu !== 'string') throw new JWEInvalid(`JOSE Header "apu" (Agreement PartyUInfo) invalid`) try { partyUInfo = base64url(joseHeader.apu) } catch { throw new JWEInvalid('Failed to base64url decode the apu') } }
if (joseHeader.apv !== undefined) { if (typeof joseHeader.apv !== 'string') throw new JWEInvalid(`JOSE Header "apv" (Agreement PartyVInfo) invalid`) try { partyVInfo = base64url(joseHeader.apv) } catch { throw new JWEInvalid('Failed to base64url decode the apv') } }
const sharedSecret = await ECDH.deriveKey( epk, key, alg === 'ECDH-ES' ? joseHeader.enc! : alg, alg === 'ECDH-ES' ? cekLength(joseHeader.enc!) : parseInt(alg.slice(-5, -2), 10), partyUInfo, partyVInfo, )
if (alg === 'ECDH-ES') return sharedSecret
// Key Agreement with Key Wrapping if (encryptedKey === undefined) throw new JWEInvalid('JWE Encrypted Key missing')
return aesKw(alg.slice(-6), sharedSecret, encryptedKey) } case 'RSA1_5': case 'RSA-OAEP': case 'RSA-OAEP-256': case 'RSA-OAEP-384': case 'RSA-OAEP-512': { // Key Encryption (RSA) if (encryptedKey === undefined) throw new JWEInvalid('JWE Encrypted Key missing')
return rsaEs(alg, key, encryptedKey) } case 'PBES2-HS256+A128KW': case 'PBES2-HS384+A192KW': case 'PBES2-HS512+A256KW': { // Key Encryption (PBES2) if (encryptedKey === undefined) throw new JWEInvalid('JWE Encrypted Key missing')
if (typeof joseHeader.p2c !== 'number') throw new JWEInvalid(`JOSE Header "p2c" (PBES2 Count) missing or invalid`)
const p2cLimit = options?.maxPBES2Count || 10_000
if (joseHeader.p2c > p2cLimit) throw new JWEInvalid(`JOSE Header "p2c" (PBES2 Count) out is of acceptable bounds`)
if (typeof joseHeader.p2s !== 'string') throw new JWEInvalid(`JOSE Header "p2s" (PBES2 Salt) missing or invalid`)
let p2s: Uint8Array try { p2s = base64url(joseHeader.p2s) } catch { throw new JWEInvalid('Failed to base64url decode the p2s') } return pbes2Kw(alg, key, encryptedKey, joseHeader.p2c, p2s) } case 'A128KW': case 'A192KW': case 'A256KW': { // Key Wrapping (AES KW) if (encryptedKey === undefined) throw new JWEInvalid('JWE Encrypted Key missing')
return aesKw(alg, key, encryptedKey) } case 'A128GCMKW': case 'A192GCMKW': case 'A256GCMKW': { // Key Wrapping (AES GCM KW) if (encryptedKey === undefined) throw new JWEInvalid('JWE Encrypted Key missing')
if (typeof joseHeader.iv !== 'string') throw new JWEInvalid(`JOSE Header "iv" (Initialization Vector) missing or invalid`)
if (typeof joseHeader.tag !== 'string') throw new JWEInvalid(`JOSE Header "tag" (Authentication Tag) missing or invalid`)
let iv: Uint8Array try { iv = base64url(joseHeader.iv) } catch { throw new JWEInvalid('Failed to base64url decode the iv') } let tag: Uint8Array try { tag = base64url(joseHeader.tag) } catch { throw new JWEInvalid('Failed to base64url decode the tag') }
return aesGcmKw(alg, key, encryptedKey, iv, tag) } default: { throw new JOSENotSupported('Invalid or unsupported "alg" (JWE Algorithm) header value') } }}
export default decryptKeyManagement
jose

Version Info

Tagged at
a month ago