mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb: Support RSASSA-PKCS1-v1_5
in WebCryptoAPI
This commit is contained in:
parent
e05ee9d297
commit
999f456ba4
Notes:
github-actions[bot]
2025-01-17 11:44:08 +00:00
Author: https://github.com/devgianlu
Commit: 999f456ba4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3252
Reviewed-by: https://github.com/gmta ✅
9 changed files with 837 additions and 58 deletions
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<title>WebCryptoAPI: sign() and verify() Using RSASSA-PKCS1-v1_5</title>
|
||||
<meta name="timeout" content="long">
|
||||
<script>
|
||||
self.GLOBAL = {
|
||||
isWindow: function() { return true; },
|
||||
isWorker: function() { return false; },
|
||||
isShadowRealm: function() { return false; },
|
||||
};
|
||||
</script>
|
||||
<script src="../../resources/testharness.js"></script>
|
||||
<script src="../../resources/testharnessreport.js"></script>
|
||||
<script src="rsa_pkcs_vectors.js"></script>
|
||||
<script src="rsa.js"></script>
|
||||
<div id=log></div>
|
||||
<script src="../../WebCryptoAPI/sign_verify/rsa_pkcs.https.any.js"></script>
|
|
@ -0,0 +1,6 @@
|
|||
// META: title=WebCryptoAPI: sign() and verify() Using RSASSA-PKCS1-v1_5
|
||||
// META: script=rsa_pkcs_vectors.js
|
||||
// META: script=rsa.js
|
||||
// META: timeout=long
|
||||
|
||||
run_test();
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue