fernet
Version:
Javascript implementation of Fernet symmetric encryption https://github.com/kr/fernet-spec
24 lines (21 loc) • 579 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="node_modules/mocha/mocha.js"></script>
<script>mocha.setup('tdd')</script>
<script src="http://chaijs.com/chai.js"></script>
<script src="fernetBrowser.js"></script>
<script src="test/encode_test.js"></script>
<script src="test/decode_test.js"></script>
<script src="test/secret_test.js"></script>
<script>
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>