-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathSubtleTests.html
More file actions
87 lines (76 loc) · 3.58 KB
/
Copy pathSubtleTests.html
File metadata and controls
87 lines (76 loc) · 3.58 KB
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
<!--
//*******************************************************************************
//
// Copyright 2020 Microsoft
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//*******************************************************************************
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Subtle Tests</title>
<link rel="stylesheet" href="../scripts/qunit/qunit-1.23.1.css">
</head>
<body style="background-color: gray">
<!-- qunit test runner -->
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../scripts/qunit/qunit-1.23.1.js"></script>
<script>
QUnit.config.autostart = false;
</script>
<!-- load msrCrypto & ie11 wrapper by default -->
<script id="msrCrypto" type="text/javascript" src="../lib/msrcrypto.js"></script>
<!-- test vectors -->
<script src="../scripts/testVectors/tv_aes_cbc.js"></script>
<script src="../scripts/testVectors/tv_aes_gcm.js"></script>
<script src="../scripts/testVectors/tv_aes_kw.js"></script>
<script src="../scripts/testVectors/tv_ecdh.js"></script>
<script src="../scripts/testVectors/tv_ecdsa.js"></script>
<script src="../scripts/testVectors/tv_hmac.js"></script>
<script src="../scripts/testVectors/tv_sha2.js"></script>
<script src="../scripts/testVectors/tv_rsa_es.js"></script>
<script src="../scripts/testVectors/tv_rsa_oaep.js"></script>
<script src="../scripts/testVectors/tv_rsa_ssa.js"></script>
<script src="../scripts/testVectors/tv_rsa_pss.js"></script>
<script src="../scripts/testVectors/tv_pbkdf2.js"></script>
<script src="../scripts/testVectors/tv_hkdf.js"></script>
<script src="../scripts/testVectors/tv_hkdfCtr.js"></script>
<script src="../scripts/testVectors/tv_concatkdf.js"></script>
<!-- test vector execution scripts -->
<script src="../scripts/utilities.js"></script>
<script src="../scripts/tests/Test.Shared.js"></script>
<script src="../scripts/tests/Test.Promise.js"></script>
<script src="../scripts/tests/Test.Encoding.js"></script>
<script src="../scripts/tests/Test.Aes.Cbc.js"></script>
<script src="../scripts/tests/Test.Aes.Gcm.js"></script>
<script src="../scripts/tests/Test.Aes.Kw.js"></script>
<script src="../scripts/tests/Test.Rsa.Es.js"></script>
<script src="../scripts/tests/Test.Rsa.Oaep.js"></script>
<script src="../scripts/tests/Test.Rsa.Ssa.js"></script>
<script src="../scripts/tests/Test.Rsa.Pss.js"></script>
<script src="../scripts/tests/Test.Sha2.js"></script>
<script src="../scripts/tests/Test.Ecdh.js"></script>
<script src="../scripts/tests/Test.Ecdsa.js"></script>
<script src="../scripts/tests/Test.Hmac.js"></script>
<script src="../scripts/tests/Test.Pbkdf2.js"></script>
<script src="../scripts/tests/Test.Hkdf.js"></script>
<script src="../scripts/tests/Test.HkdfCtr.js"></script>
<script src="../scripts/tests/Test.ConcatKdf.js"></script>
<input type="button" onclick="QUnit.start();"></input>
</body>
</html>