Heute gehts mal kurzt um die Praxis. Im letzten Artikel ging es um kryptographisch sicherer Zufallszahlengenerator mit dem Raspberry Pi und Hardware Random Number Generator (RNG).
Man unterscheidet übrigens grundsätzlich zwischen nicht-deterministischen und deterministischen Zufallszahlengeneratoren. Nicht-deterministisch ist ein Zufallszahlengenerator, wenn er auch bei gleichen Ausgangsbedingungen unterschiedliche Werte liefert, so wie der hier vorgestellte. Da die Implementierung einer Software-Prozedur in der Regel deterministisch arbeitet, muss zur Realisierung eines nicht-deterministischen Zufallszahlengenerators ein externer (beispielsweise physikalischer per Hardware) Vorgang der auf dem Raspberry Pi läuft einbezogen werden.
Nun eine Anwendung als NodeRed-Flow um kryptographisch sichere Zufallszahlen zu generieren die dann als Seed ua. auch für Bitcoin verwendet werden können.
Der Flow läuft übrigens auch erfolgreich auf einem NodeRed das in einem Docker-Kontainer läuft. Es wird übrigens die Schnittstelle mit head -c 128 /dev/hwrng abgefragt und der Timeout auf 2 Sekunden gesetzt. Wer größere oder kleinere Zahlen braucht, kann die 128 anpassen. Die 512 Bit kann man übrigens auch für Bitcoin gut gebrauchen 😉
Hier eine kleine Gui dazu: …
Und die Debug Ausgabe:
Für Windows läuft der Flow aber nicht ohne Anpassungen.
Hier kostenlos zu Downloaden der JavaScript Code für NodeRed
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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
[ { "id": "246f8bb7.1d97c4", "type": "tab", "label": "Zufallszahlen", "disabled": false, "info": "" }, { "id": "b3908204.81b368", "type": "group", "z": "246f8bb7.1d97c4", "name": "Hardware Random Number Generator (HRNG) or True Random Number Generator (TRNG)", "style": { "fill": "#d1d1d1", "label": true }, "nodes": [ "670c710c.5f63f8", "6c652b34.de905c" ], "x": 214, "y": 91.5, "w": 573, "h": 97 }, { "id": "b0e49796.33657", "type": "inject", "z": "246f8bb7.1d97c4", "name": "Start", "props": [ { "p": "payload" }, { "p": "topic", "vt": "str" } ], "repeat": "", "crontab": "", "once": false, "onceDelay": 0.1, "topic": "", "payload": "", "payloadType": "date", "x": 130, "y": 140, "wires": [ [ "670c710c.5f63f8" ] ] }, { "id": "dfb968e1.08f3d", "type": "debug", "z": "246f8bb7.1d97c4", "name": "Ausgabe Fehler", "active": true, "tosidebar": true, "console": false, "tostatus": false, "complete": "payload", "targetType": "msg", "statusVal": "", "statusType": "auto", "x": 560, "y": 240, "wires": [] }, { "id": "dcad4603.bb8a1", "type": "debug", "z": "246f8bb7.1d97c4", "name": "Ausgabe Rückgabecode", "active": true, "tosidebar": true, "console": false, "tostatus": false, "complete": "payload", "targetType": "msg", "statusVal": "", "statusType": "auto", "x": 590, "y": 300, "wires": [] }, { "id": "8dc39f23.68882", "type": "debug", "z": "246f8bb7.1d97c4", "name": "Ausgabe Ergebnis als Hex", "active": true, "tosidebar": true, "console": false, "tostatus": false, "complete": "payload", "targetType": "msg", "statusVal": "", "statusType": "auto", "x": 960, "y": 300, "wires": [] }, { "id": "89fc210d.74ec", "type": "hex to bin", "z": "246f8bb7.1d97c4", "name": "", "x": 880, "y": 140, "wires": [ [ "a04f0a1e.999d98", "58fe6fde.34f28" ] ] }, { "id": "a04f0a1e.999d98", "type": "debug", "z": "246f8bb7.1d97c4", "name": "Ausgabe Ergebnis als Bin", "active": true, "tosidebar": true, "console": false, "tostatus": false, "complete": "payload", "targetType": "msg", "statusVal": "", "statusType": "auto", "x": 950, "y": 240, "wires": [] }, { "id": "4dbde524.0e9194", "type": "comment", "z": "246f8bb7.1d97c4", "name": "(c) 2021 Thomas Wenzlaff www.wenzlaff.info", "info": "", "x": 1070, "y": 60, "wires": [] }, { "id": "1da03cda.8a6b3b", "type": "comment", "z": "246f8bb7.1d97c4", "name": "Der physikalischer Zufallszahlengenerator läuft so nur auf Linux Systemen, die die Hardwaren Schnittstelle für Zufallszahlen /dev/hwrng aktiviert haben wie z.B. Raspberry Pi", "info": "", "x": 630, "y": 440, "wires": [] }, { "id": "2169ad57.b1b492", "type": "comment", "z": "246f8bb7.1d97c4", "name": "Kryptographisch sicherer Zufallszahlengenerator mit dem Raspberry Pi und Hardware Random Number Generator (RNG)", "info": "Siehe http://blog.wenzlaff.de/?p=16446", "x": 470, "y": 60, "wires": [] }, { "id": "670c710c.5f63f8", "type": "exec", "z": "246f8bb7.1d97c4", "g": "b3908204.81b368", "command": "head -c 128 /dev/hwrng", "addpay": false, "append": "", "useSpawn": "false", "timer": "2", "oldrc": false, "name": "lese aus hwrng", "x": 320, "y": 140, "wires": [ [ "6c652b34.de905c" ], [ "dfb968e1.08f3d" ], [ "dcad4603.bb8a1" ] ] }, { "id": "6c652b34.de905c", "type": "function", "z": "246f8bb7.1d97c4", "g": "b3908204.81b368", "name": "to 128 Hex Zeichen", "func": "msg.payload = msg.payload.toString(\"hex\").substr(1,128);\nreturn msg;\n", "outputs": 1, "noerr": 0, "initialize": "", "finalize": "", "x": 550, "y": 140, "wires": [ [ "8dc39f23.68882", "89fc210d.74ec", "8bc585e3.a455d8" ] ] }, { "id": "9c22faef.2052e", "type": "ui_button", "z": "246f8bb7.1d97c4", "name": "", "group": "37cc6aa7.926f66", "order": 9, "width": 0, "height": 0, "passthru": false, "label": "Generate Zufallszahl", "tooltip": "", "color": "", "bgcolor": "", "icon": "", "payload": "", "payloadType": "str", "topic": "topic", "topicType": "msg", "x": 160, "y": 240, "wires": [ [ "670c710c.5f63f8" ] ] }, { "id": "8bc585e3.a455d8", "type": "ui_text", "z": "246f8bb7.1d97c4", "group": "37cc6aa7.926f66", "order": 6, "width": 0, "height": 0, "name": "", "label": "Zufallszahl Hex (128 Byte, 512 Bit)", "format": "{{msg.payload}}", "layout": "col-center", "x": 980, "y": 360, "wires": [] }, { "id": "58fe6fde.34f28", "type": "ui_text", "z": "246f8bb7.1d97c4", "group": "37cc6aa7.926f66", "order": 7, "width": 0, "height": 0, "name": "", "label": "Zufallszahl Bin (128 Byte, 512 Bit)", "format": "{{msg.payload}}", "layout": "col-center", "x": 1120, "y": 140, "wires": [] }, { "id": "bb9d17b9.20931", "type": "ui_button", "z": "246f8bb7.1d97c4", "name": "", "group": "37cc6aa7.926f66", "order": 8, "width": 0, "height": 0, "passthru": false, "label": "Lösche Zufallszahlen", "tooltip": "", "color": "", "bgcolor": "#79c358", "icon": "", "payload": "", "payloadType": "str", "topic": "topic", "topicType": "msg", "x": 160, "y": 380, "wires": [ [ "3ecc2f2d.6e7be" ] ] }, { "id": "3ecc2f2d.6e7be", "type": "function", "z": "246f8bb7.1d97c4", "name": "Löschen", "func": "msg.payload=\"\";\n\nreturn msg;", "outputs": 1, "noerr": 0, "initialize": "", "finalize": "", "x": 460, "y": 380, "wires": [ [ "8bc585e3.a455d8", "58fe6fde.34f28" ] ] }, { "id": "37cc6aa7.926f66", "type": "ui_group", "name": "BIP39", "tab": "2b1a348.d04994c", "order": 1, "disp": true, "width": "14", "collapse": false }, { "id": "2b1a348.d04994c", "type": "ui_tab", "name": "BIP39", "icon": "fingerprint", "disabled": false, "hidden": false } ] |