forked from bc-game-project/verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plinko.html
executable file
·141 lines (141 loc) · 4.99 KB
/
plinko.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Plinko verify</title>
<link rel="stylesheet" href="./lib/main.css">
<link rel="stylesheet" href="./lib/bootstrap/css/bootstrap.min.css">
<script src="./lib/vue.min.js"></script>
<script src="./lib/crypto-js.js"></script>
<script src="./lib/tools.js"></script>
</head>
<body>
<div id="app" class="main">
<h1 class="text-center pb-5">Plinko verify</h1>
<hr>
<form class="py-5">
<h2 class="text-center">Input</h2>
<div class="form-group">
<input :value="client_seed" @change="client_seed = $event.target.value" class="form-control" placeholder="Client Seed">
</div>
<div class="form-group">
<input :value="server_seed" @change="server_seed = $event.target.value" class="form-control" placeholder="Server Seed">
</div>
<div class="form-group">
<input :value="server_seed_hash" @change="server_seed_hash = $event.target.value" class="form-control" placeholder="Server Seed Hash">
</div>
<div class="form-group">
<input :value="nonce" @change="nonce = $event.target.value" class="form-control" placeholder="Nonce">
</div>
</form>
<hr>
<form class="py-5">
<h2 class="text-center pb-5">Output</h2>
<div class="form-group">
<label>sha256(server_seed)</label>
<input class="form-control" readonly :value="sha256(server_seed)">
</div>
<div class="form-group">
<label>sha512(server_seed+client_seed+nonce)</label>
<input class="form-control" readonly :value="result_hash">
</div>
<hr>
<h5>Convert each set of four bytes into a number</h3>
<div class="form-group" style="overflow-x: auto;">
<table style="width: 1200px;" class="table table-sm table-bordered">
<thead>
<tr>
<th>#</th>
<td v-for="(hex, index) in result_hash_list" :key="index">{{ index }}</td>
</tr>
</thead>
<tbody>
<tr>
<th>Hex</th>
<td v-for="(hex, index) in result_hash_list" :key="index">{{ hex }}</td>
</tr>
<tr>
<th>Base 10</th>
<td v-for="(hex, index) in result_hash_list" :key="index">{{ parseInt(hex) }}</td>
</tr>
</tbody>
</table>
</div>
<hr>
<h5>Each set of 4 bytes is turned into a number in the range [0, 1). Only the first calculation is displayed for conciceness.</h5>
<div>({{ parseInt(result_hash_list[0]) }}/256^1) + ({{ parseInt(result_hash_list[1]) }}/256^2) + ({{ parseInt(result_hash_list[2]) }}/256^3) + ({{ parseInt(result_hash_list[3]) }}/256^4)</div>
<div style="white-space: nowrap;">= ({{ parseInt(result_hash_list[0])/(256) }}) + ({{ parseInt(result_hash_list[1])/(256*256) }}) + ({{ parseInt(result_hash_list[2])/(256*256*256) }}) + ({{ parseInt(result_hash_list[0])/(256*256*256*256) }})</div>
<div>= ({{ parseInt(result_hash_list[0])/(256) + parseInt(result_hash_list[1])/(256*256) + parseInt(result_hash_list[2])/(256*256*256) + parseInt(result_hash_list[3])/(256*256*256*256) }})</div>
</form>
<form class="py-5">
<h2 class="text-center pb-5">Results</h2>
<div class="form-group">
<table class="table table-sm table-bordered">
<thead>
<tr>
<th>Pin #</th>
<th>Number</th>
<th>Number*2</th>
<th>Direction</th>
</tr>
</thead>
<tbody>
<tr v-for="(num, index) in results">
<td>{{ index+1 }}</td>
<td>{{ num }}</td>
<td>{{ num*2 }}</td>
<td>{{ num>.5?'Right':'Left' }}</td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
<script>
let qs = tools.queryString();
var app = new Vue({
el: '#app',
data: {
/** inputs */
client_seed: qs.c,
server_seed: qs.s,
server_seed_hash: qs.h,
nonce: parseInt(qs.n) || 0,
},
computed: {
result_hash () {
return this.sha512(this.server_seed+this.client_seed+this.nonce);
},
result_hash_list () {
return String(this.result_hash).match(/.{2}/g);
},
results () {
let res = [];
let hexArr = this.result_hash_list;
for (let i=0, l=hexArr.length; i<l; i+=4) {
let num = this.parseInt(hexArr[i])/Math.pow(256, 1) + this.parseInt(hexArr[i+1])/Math.pow(256,2) + this.parseInt(hexArr[i+2])/Math.pow(256,3) + this.parseInt(hexArr[i+3])/Math.pow(256,4)
res.push(num);
}
return res;
}
},
methods: {
round (index) {
return this.client_seed + ':' + this.nonce + ':' + index;
},
sha256 (value) {
return CryptoJS.SHA256(CryptoJS.enc.Utf8.parse(value));
},
sha512 (value) {
return CryptoJS.SHA512(CryptoJS.enc.Utf8.parse(value));
},
parseInt (value) {
return window.parseInt(value, 16);
}
}
});
</script>
</body>
</html>