summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/WebCryptoAPI/sign_verify/test_rsa_pss.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/WebCryptoAPI/sign_verify/test_rsa_pss.html')
-rw-r--r--testing/web-platform/tests/WebCryptoAPI/sign_verify/test_rsa_pss.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/WebCryptoAPI/sign_verify/test_rsa_pss.html b/testing/web-platform/tests/WebCryptoAPI/sign_verify/test_rsa_pss.html
new file mode 100644
index 000000000..3a2034feb
--- /dev/null
+++ b/testing/web-platform/tests/WebCryptoAPI/sign_verify/test_rsa_pss.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<meta name="timeout" content="long">
+<title>WebCryptoAPI: sign() and verify() Using RSA-PSS</title>
+<link rel="author" title="Charles Engelke" href="mailto:w3c@engelke.com">
+<link rel="help" href="https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#SubtleCrypto-method-sign">
+<link rel="help" href="https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#SubtleCrypto-method-verify">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+
+<script src="rsa_pss_vectors.js"></script>
+<script src="rsa.js"></script>
+
+<h1>sign and verify Tests for RSA-PSS</h1>
+
+<div id="log"></div>
+<script>
+run_test();
+</script>