Skip to content

Commit a76eaa4

Browse files
committed
feat: support the Ed25519 JWS Algorithm Identifier
1 parent 5f56eaf commit a76eaa4

12 files changed

+16
-11
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"detached",
1414
"ec",
1515
"ecdsa",
16+
"ed25519",
1617
"eddsa",
1718
"edge",
1819
"electron",

src/jwks/local.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class LocalJWKSet {
9494
}
9595

9696
// filter out non-applicable OKP Sub Types
97-
if (candidate && alg === 'EdDSA') {
97+
if (candidate && (alg === 'EdDSA' || alg === 'Ed25519')) {
9898
candidate = jwk.crv === 'Ed25519'
9999
}
100100

src/key/generate_key_pair.ts

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ export async function generateKeyPair(
125125
algorithm = { name: 'ECDSA', namedCurve: 'P-521' }
126126
keyUsages = ['sign', 'verify']
127127
break
128+
case 'Ed25519': // Fall through
128129
case 'EdDSA': {
129130
keyUsages = ['sign', 'verify']
130131
algorithm = { name: 'Ed25519' }

src/lib/asn1.ts

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ const genericImport = async (
129129
keyUsages = isPublic ? [] : ['deriveBits']
130130
break
131131
}
132+
case 'Ed25519': // Fall through
132133
case 'EdDSA':
133134
algorithm = { name: 'Ed25519' }
134135
keyUsages = isPublic ? ['verify'] : ['sign']

src/lib/crypto_key.ts

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export function checkSigCryptoKey(key: types.CryptoKey, alg: string, usage: KeyU
6666
if (actual !== expected) throw unusable(`SHA-${expected}`, 'algorithm.hash')
6767
break
6868
}
69+
case 'Ed25519': // Fall through
6970
case 'EdDSA': {
7071
if (!isAlgorithm(key.algorithm, 'Ed25519')) throw unusable('Ed25519')
7172
break

src/lib/jwk_to_key.ts

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ function subtleMapping(jwk: types.JWK): {
6666
}
6767
case 'OKP': {
6868
switch (jwk.alg) {
69+
case 'Ed25519': // Fall through
6970
case 'EdDSA':
7071
algorithm = { name: 'Ed25519' }
7172
keyUsages = jwk.d ? ['sign'] : ['verify']

src/lib/normalize_key.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const handleKeyObject = (keyObject: ConvertableKeyObject, alg: string) => {
7373
}
7474

7575
if (keyObject.asymmetricKeyType === 'ed25519') {
76-
if (alg !== 'EdDSA') {
76+
if (alg !== 'EdDSA' && alg !== 'Ed25519') {
7777
throw new TypeError('TODO')
7878
}
7979

src/lib/subtle_dsa.ts

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export default (alg: string, algorithm: KeyAlgorithm | EcKeyAlgorithm) => {
1919
case 'ES384':
2020
case 'ES512':
2121
return { hash, name: 'ECDSA', namedCurve: (algorithm as EcKeyAlgorithm).namedCurve }
22+
case 'Ed25519': // Fall through
2223
case 'EdDSA':
2324
return { name: 'Ed25519' }
2425
default:

tap/jwk.ts

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export default (
2828
env.isEdgeRuntime ||
2929
(env.isGecko && env.isBrowserVersionAtLeast(130)),
3030
],
31+
['Ed25519', KEYS.Ed25519.jwk, !env.isBlink],
3132
['EdDSA', KEYS.Ed25519.jwk, !env.isBlink],
3233
['ES256', KEYS.P256.jwk, true],
3334
['ES384', KEYS.P384.jwk, true],

tap/jws.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export default (
1313

1414
type Vector = [string, boolean] | [string, boolean, jose.GenerateKeyPairOptions]
1515
const algorithms: Vector[] = [
16+
['Ed25519', !env.isBlink],
1617
['EdDSA', !env.isBlink],
1718
['ES256', true],
1819
['ES384', true],

tap/keyobject-stub.ts

+3-9
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,9 @@ const stub: Pick<
8787
return generate('ec', { namedCurve: 'P-384' })
8888
case 'ES512':
8989
return generate('ec', { namedCurve: 'P-521' })
90-
case 'EdDSA': {
91-
switch (options?.crv) {
92-
case undefined:
93-
case 'Ed25519':
94-
return generate('ed25519')
95-
default:
96-
throw new Error('unreachable')
97-
}
98-
}
90+
case 'Ed25519': // Fall through
91+
case 'EdDSA':
92+
return generate('ed25519')
9993
case 'ECDH-ES':
10094
case 'ECDH-ES+A128KW':
10195
case 'ECDH-ES+A192KW':

tap/pem.ts

+3
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ export default (
8585
env.isEdgeRuntime ||
8686
(env.isGecko && env.isBrowserVersionAtLeast(130)),
8787
],
88+
['Ed25519', KEYS.Ed25519.pkcs8, !env.isBlink],
89+
['Ed25519', KEYS.Ed25519.spki, !env.isBlink],
90+
['Ed25519', KEYS.Ed25519.x509, !env.isBlink],
8891
[['EdDSA', 'Ed25519'], KEYS.Ed25519.pkcs8, !env.isBlink],
8992
[['EdDSA', 'Ed25519'], KEYS.Ed25519.spki, !env.isBlink],
9093
[['EdDSA', 'Ed25519'], KEYS.Ed25519.x509, !env.isBlink],

0 commit comments

Comments
 (0)