-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Firefox 146 supports compressed ECC key point format #28497
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
a22caa7
342e6bc
a380a85
e771fb0
851078d
bfec9e8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1095,7 +1095,7 @@ | |
| { | ||
| "version_added": "1.17", | ||
| "partial_implementation": true, | ||
| "notes": "Not supported: ECDSA P-521, ECDH P-521." | ||
| "notes": "Not supported: ECDH P-521." | ||
| }, | ||
| { | ||
| "version_added": "1.15", | ||
|
|
@@ -1107,7 +1107,7 @@ | |
| "version_added": "1.14", | ||
| "version_removed": "1.15", | ||
| "partial_implementation": true, | ||
| "notes": "Not supported: ECDSA, ECDH, AES-CTR, AES-CBC, AES-GCM, AES-KW." | ||
| "notes": "Not supported: ECDH, AES-CTR, AES-CBC, AES-GCM, AES-KW." | ||
| } | ||
| ], | ||
| "edge": [ | ||
|
|
@@ -1158,6 +1158,170 @@ | |
| "deprecated": false | ||
| } | ||
| }, | ||
| "ECDH": { | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Following discussion in https://github.com/mdn/browser-compat-data/pull/28497/files#r2591982487 I've
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is stellar, Hamish! I was mostly trying to leave a paper trail for when someone (me?) eventually got around to fixing this, but you've gone above and beyond. Thank you!
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You're welcome. Keeping BCD correct is worth it. |
||
| "__compat": { | ||
| "description": "`ECDH` algorithm", | ||
| "mdn_url": "https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey", | ||
| "spec_url": "https://w3c.github.io/webcrypto/#ecdh", | ||
| "support": { | ||
| "bun": { | ||
| "version_added": false | ||
| }, | ||
| "chrome": { | ||
| "version_added": "37" | ||
| }, | ||
| "chrome_android": "mirror", | ||
| "deno": { | ||
| "version_added": "1.18", | ||
| "partial_implementation": true, | ||
| "notes": "P-384 supported. Not supported: P-256, P-521." | ||
| }, | ||
hamishwillee marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "edge": "mirror", | ||
| "firefox": { | ||
| "version_added": "34" | ||
| }, | ||
| "firefox_android": "mirror", | ||
| "nodejs": { | ||
| "version_added": false | ||
| }, | ||
| "oculus": "mirror", | ||
| "opera": "mirror", | ||
| "opera_android": "mirror", | ||
| "safari": { | ||
| "version_added": "7" | ||
| }, | ||
| "safari_ios": "mirror", | ||
| "samsunginternet_android": "mirror", | ||
| "webview_android": "mirror", | ||
| "webview_ios": "mirror" | ||
| }, | ||
| "status": { | ||
| "experimental": false, | ||
| "standard_track": true, | ||
| "deprecated": false | ||
| } | ||
| }, | ||
| "compressed_elliptic_curve_points": { | ||
| "__compat": { | ||
| "description": "Key data can contain compressed elliptic curve points.", | ||
hamishwillee marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "spec_url": "https://w3c.github.io/webcrypto/#ecdsa-operations-import-key", | ||
| "support": { | ||
| "chrome": { | ||
| "version_added": "≤80" | ||
| }, | ||
| "chrome_android": "mirror", | ||
| "deno": { | ||
| "version_added": false | ||
| }, | ||
| "edge": "mirror", | ||
| "firefox": { | ||
| "version_added": "146" | ||
| }, | ||
| "firefox_android": "mirror", | ||
| "nodejs": { | ||
| "version_added": false | ||
| }, | ||
| "oculus": "mirror", | ||
| "opera": "mirror", | ||
| "opera_android": "mirror", | ||
| "safari": { | ||
| "version_added": false | ||
| }, | ||
| "safari_ios": "mirror", | ||
| "samsunginternet_android": "mirror", | ||
| "webview_android": "mirror", | ||
| "webview_ios": "mirror" | ||
| }, | ||
| "status": { | ||
| "experimental": false, | ||
| "standard_track": true, | ||
| "deprecated": false | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "ECDSA": { | ||
| "__compat": { | ||
| "description": "`ECDSA` algorithm", | ||
| "mdn_url": "https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey", | ||
| "spec_url": "https://w3c.github.io/webcrypto/#ecdsa", | ||
| "support": { | ||
| "bun": { | ||
| "version_added": false | ||
| }, | ||
| "chrome": { | ||
| "version_added": "37" | ||
| }, | ||
| "chrome_android": "mirror", | ||
| "deno": { | ||
| "version_added": "1.18", | ||
| "partial_implementation": true, | ||
| "notes": "P-384 supported. Not supported: P-256, P-521." | ||
| }, | ||
| "edge": "mirror", | ||
| "firefox": { | ||
| "version_added": "34" | ||
| }, | ||
| "firefox_android": "mirror", | ||
| "nodejs": { | ||
| "version_added": false | ||
hamishwillee marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }, | ||
| "oculus": "mirror", | ||
| "opera": "mirror", | ||
| "opera_android": "mirror", | ||
| "safari": { | ||
| "version_added": "7" | ||
| }, | ||
| "safari_ios": "mirror", | ||
| "samsunginternet_android": "mirror", | ||
| "webview_android": "mirror", | ||
| "webview_ios": "mirror" | ||
| }, | ||
| "status": { | ||
| "experimental": false, | ||
| "standard_track": true, | ||
hamishwillee marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "deprecated": false | ||
| } | ||
| }, | ||
| "compressed_elliptic_curve_points": { | ||
| "__compat": { | ||
| "description": "Key data can contain compressed elliptic curve points.", | ||
hamishwillee marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "spec_url": "https://w3c.github.io/webcrypto/#ecdsa-operations-import-key", | ||
| "support": { | ||
| "chrome": { | ||
| "version_added": "≤80" | ||
| }, | ||
| "chrome_android": "mirror", | ||
| "deno": { | ||
| "version_added": false | ||
| }, | ||
| "edge": "mirror", | ||
| "firefox": { | ||
| "version_added": "146" | ||
| }, | ||
| "firefox_android": "mirror", | ||
| "nodejs": { | ||
| "version_added": false | ||
| }, | ||
| "oculus": "mirror", | ||
| "opera": "mirror", | ||
| "opera_android": "mirror", | ||
| "safari": { | ||
| "version_added": false | ||
| }, | ||
| "safari_ios": "mirror", | ||
| "samsunginternet_android": "mirror", | ||
| "webview_android": "mirror", | ||
| "webview_ios": "mirror" | ||
| }, | ||
| "status": { | ||
| "experimental": false, | ||
| "standard_track": true, | ||
| "deprecated": false | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "ed25519": { | ||
| "__compat": { | ||
| "description": "`Ed25519` algorithm", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.