added modified jspow to repo
This commit is contained in:
parent
f811912f1d
commit
851850ef55
@ -16,7 +16,7 @@
|
|||||||
<script src="marked.min.js" defer></script>
|
<script src="marked.min.js" defer></script>
|
||||||
<script src="purify.min.js" defer></script>
|
<script src="purify.min.js" defer></script>
|
||||||
<script src="sha3.js" defer></script>
|
<script src="sha3.js" defer></script>
|
||||||
<script src="onionr-jspow/index.js" defer></script>
|
<script src="jspow/index.js" defer></script>
|
||||||
<script src="onionr-blocks.js" defer></script>
|
<script src="onionr-blocks.js" defer></script>
|
||||||
<script src="hush-hush.js" defer></script>
|
<script src="hush-hush.js" defer></script>
|
||||||
<script src="worker-handler.js" defer></script>
|
<script src="worker-handler.js" defer></script>
|
||||||
|
1
jspow/.gitignore
vendored
Normal file
1
jspow/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
node_modules/*
|
3
jspow/README.md
Normal file
3
jspow/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# OnionrPOW-js
|
||||||
|
|
||||||
|
lazy implementation of onionr proof of work
|
83
jspow/index.js
Normal file
83
jspow/index.js
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2020 Kevin Froman
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// version = 0.0.0
|
||||||
|
|
||||||
|
class Block {
|
||||||
|
constructor(meta, sig, signer, time, pow=0, c=0) {
|
||||||
|
this.meta = meta
|
||||||
|
this.sig = sig
|
||||||
|
this.signer = signer
|
||||||
|
this.time = time
|
||||||
|
this.c = c
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
let doHash = function(data){
|
||||||
|
const shaObj = new jsSHA("SHA3-256", "UINT8ARRAY", { encoding: "UTF8" });
|
||||||
|
shaObj.update(data)
|
||||||
|
return shaObj.getHash("UINT8ARRAY");
|
||||||
|
}
|
||||||
|
let doHashHex = function(data){
|
||||||
|
const shaObj = new jsSHA("SHA3-256", "UINT8ARRAY", { encoding: "UTF8" });
|
||||||
|
shaObj.update(data)
|
||||||
|
return shaObj.getHash("HEX");
|
||||||
|
}
|
||||||
|
|
||||||
|
function doPow(metadata, data, difficulty){
|
||||||
|
// Inefficient single threaded proof of work. Accepting better implementations!
|
||||||
|
var encoder = new TextEncoder("utf-8")
|
||||||
|
if (typeof data == 'string'){
|
||||||
|
data = encoder.encode(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
metadata['c'] = 0
|
||||||
|
metadata['n'] = Math.floor(Math.random() * Math.floor(10000)) + Math.floor(Math.random() * Math.floor(10000))
|
||||||
|
|
||||||
|
while (true){
|
||||||
|
var difficultyCounter = 0
|
||||||
|
let metadataString = encoder.encode(JSON.stringify(metadata) + "\n")
|
||||||
|
let arr = new Uint8Array(metadataString.length + data.length)
|
||||||
|
arr.set(metadataString)
|
||||||
|
arr.set(data, metadataString.length)
|
||||||
|
hash = doHash(arr)
|
||||||
|
|
||||||
|
for (var i = 0; i < hash.length; i++){
|
||||||
|
if (hash[i] == 0){
|
||||||
|
difficultyCounter += 1
|
||||||
|
if (difficultyCounter === difficulty){
|
||||||
|
return arr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
metadata['c'] += 1
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function unserialize(str, theClass) {
|
||||||
|
var instance = new theClass() // NOTE: if your constructor checks for unpassed arguments, then just pass dummy ones to prevent throwing an error
|
||||||
|
var serializedObject = JSON.parse(str)
|
||||||
|
Object.assign(instance, serializedObject)
|
||||||
|
return instance
|
||||||
|
}
|
||||||
|
|
||||||
|
|
15
jspow/package.json
Normal file
15
jspow/package.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"name": "onionr-jspow",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"description": "Onionr POW JS Implementation",
|
||||||
|
"main": "index.js",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
|
"dependencies": {
|
||||||
|
"sha3": "^2.1.3"
|
||||||
|
}
|
||||||
|
}
|
@ -1 +0,0 @@
|
|||||||
Subproject commit abd1872a9174c983a75f2ffe102dab72da706b14
|
|
Loading…
Reference in New Issue
Block a user