mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
13 lines
314 B
HTML
13 lines
314 B
HTML
|
|
<!doctype html>
|
||
|
|
<html>
|
||
|
|
<script src=bundle.js></script>
|
||
|
|
<body>
|
||
|
|
<pre>
|
||
|
|
require('crypto').createHash('sha1').update('abc').digest('hex') == '<span id=ans></span>'
|
||
|
|
</pre>
|
||
|
|
</body>
|
||
|
|
<script>
|
||
|
|
document.getElementById('ans').innerHTML = require('crypto').createHash('sha1').update('abc').digest('hex')
|
||
|
|
</script>
|
||
|
|
</html>
|