-
Notifications
You must be signed in to change notification settings - Fork 0
/
hankosignchk.html
70 lines (57 loc) · 1.82 KB
/
hankosignchk.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html><html><head><meta charset="utf-8">
<style>
textarea {
font-size: 80%;
font-family: monospace;
width: 50em;
height: 8em;
}
input[type="text"] {
font-size: 80%;
font-family: monospace;
width: 50em;
}
#verify {
width: 30em;
border: 1px solid black;
height: 1.2em;
padding: .3em;
}
</style>
<h1>HANKOを確認する(電子署名を確認する)</h1>
メッセージ<br>
<textarea id=mes>
</textarea><br>
電子署名<br>
<input type=text id=signed><br>
電子署名した人のHANKO_ID<br>
<input type=text id=pub><br>
<br>
<button id=btn>電子署名をチェック</button><br>
<br>
<div id=verify></div><br>
<script type="module">
import { Ed25519 } from "https://code4sabae.github.io/js/Ed25519.js";
import { hex } from "https://code4sabae.github.io/js/hex.js";
btn.onclick = () => {
try {
const pubbin = hex.toBin(pub.value);
const msg = new TextEncoder('utf-8').encode(mes.value);
const sig = hex.toBin(signed.value);
console.log(hex.fromBin(sig), hex.fromBin(msg), hex.fromBin(pubbin));
const result = Ed25519.verify(sig, msg, pubbin);
verify.textContent = result ? "正しい電子署名と確認できました" : "ERROR! おかしな電子署名です";
} catch (e) {
verify.textContent = "ERROR! 値が正しく設定されていません";
}
};
</script>
<hr>
<a href=hankomaker.html>HANKOをつくる</a><br>
<a href=hankosign.html>HANKOを押す(メッセージに電子署名する)</a><br>
<a href=hankosignchk.html>HANKOを確認する(電子署名を確認する)</a><br>
<hr>
App: CC BY <a href=https://fukuno.jig.jp/3006>福野泰介の一日一創</a><br>
Lib: <a href=https://github.com/canonchain/Ed25519-wasm>Ed25519-wasm</a> → <a href=https://github.com/code4sabae/js/blob/master/Ed25519.js>Ed25519.js ES module version</a><br>
</body>
<html>