• File: index.html
  • Full Path: /var/www/sandbox/node_modules/crypto-browserify/example/index.html
  • Date Modified: 02/20/2025 6:17 PM
  • File size: 314 bytes
  • MIME-type: text/html
  • Charset: utf-8
<!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>