vvcomponent
Version:
VV组件
19 lines (16 loc) • 469 B
HTML
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHA1</title>
<script src="/class/SHA1.js"></script>
</head>
<body>
<script>
const sha1 = new SHA1();
console.log(sha1.sha1("Hello World!"));
console.log(sha1.isMatching("Hello World!", "2ef7bde608ce5404e97d5f042f95f89f1c232871"));
</script>
</body>
</html>