2018-07-08 02:43:06 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>U2F Bridge Demo</h1>
|
2018-07-15 03:03:25 +00:00
|
|
|
<h3 id="progress"></h3>
|
2018-09-10 22:22:14 +00:00
|
|
|
<h3 id="errors" style="color:red;"></h3>
|
|
|
|
|
|
|
|
<p>To update firmware, upload JSON file here.</p>
|
|
|
|
<input type="file" id="input" onchange="handleFirmware(this.files)">
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<button onclick="run_tests()">Run tests</button>
|
|
|
|
|
2018-07-08 02:43:06 +00:00
|
|
|
</body>
|
2018-07-09 02:36:16 +00:00
|
|
|
<script src="js/u2f-api.js"></script>
|
|
|
|
<script src="js/elliptic.js"></script>
|
|
|
|
<script src="js/sha256.min.js"></script>
|
|
|
|
<script src="js/aes.js"></script>
|
2018-07-15 03:03:25 +00:00
|
|
|
<script src="js/intel-hex.js"></script>
|
2018-07-09 02:36:16 +00:00
|
|
|
<script src="js/wallet.js"></script>
|
2018-07-08 02:43:06 +00:00
|
|
|
</html>
|