Wer in einer schönen GUI mit NodeRed mal einen SHA-256 Hash erzeugen will, kann das gern hiermit machen. Hier der Flow: …
Den Code des Flows stelle ich gern hier zur Verfügung
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 |
[ { "id": "8c7858ec.ea668", "type": "tab", "label": "Hash SHA-256", "disabled": false, "info": "" }, { "id": "620e3948.7c8458", "type": "group", "z": "8c7858ec.ea668", "name": "GUI", "style": { "fill": "#e3f3d3", "label": true }, "nodes": [ "f22508c6.fbb47", "39696a59.a28096" ], "x": 64, "y": 199, "w": 602, "h": 82 }, { "id": "f7651dde.c15ac", "type": "inject", "z": "8c7858ec.ea668", "name": "Inject", "props": [ { "p": "payload" }, { "p": "topic", "vt": "str" } ], "repeat": "", "crontab": "", "once": false, "onceDelay": 0.1, "topic": "", "payload": "", "payloadType": "str", "x": 170, "y": 140, "wires": [ [ "a285ae46.8a56b" ] ] }, { "id": "3631795c.1eac0e", "type": "debug", "z": "8c7858ec.ea668", "name": "", "active": true, "tosidebar": true, "console": false, "tostatus": false, "complete": "payload", "targetType": "msg", "statusVal": "", "statusType": "auto", "x": 570, "y": 140, "wires": [] }, { "id": "5106f040.3e5d8", "type": "comment", "z": "8c7858ec.ea668", "name": "(c) 2021 Thomas Wenzlaff www.wenzlaff.info", "info": "", "x": 490, "y": 420, "wires": [] }, { "id": "4db0e3c6.21085c", "type": "comment", "z": "8c7858ec.ea668", "name": "Node: node-red-contrib-cryptography", "info": "", "x": 510, "y": 380, "wires": [] }, { "id": "a285ae46.8a56b", "type": "hash sha256", "z": "8c7858ec.ea668", "name": "", "x": 370, "y": 140, "wires": [ [ "3631795c.1eac0e", "f22508c6.fbb47" ] ] }, { "id": "f22508c6.fbb47", "type": "ui_text", "z": "8c7858ec.ea668", "g": "620e3948.7c8458", "group": "6743b83e.0ad88", "order": 2, "width": "1", "height": "3", "name": "Hash Ausgabe", "label": "Ausgabe", "format": "{{msg.payload}}", "layout": "col-center", "x": 560, "y": 240, "wires": [] }, { "id": "39696a59.a28096", "type": "ui_text_input", "z": "8c7858ec.ea668", "g": "620e3948.7c8458", "name": "", "label": "Eingabe Klartext", "tooltip": "Eingabe des Wertes für den ein Hash automatisch berechnet wird", "group": "6743b83e.0ad88", "order": 3, "width": 0, "height": 0, "passthru": true, "mode": "text", "delay": 300, "topic": "topic", "topicType": "msg", "x": 170, "y": 240, "wires": [ [ "a285ae46.8a56b" ] ] }, { "id": "6743b83e.0ad88", "type": "ui_group", "name": "Hash SHA-256", "tab": "af3fd632.935f38", "order": 2, "disp": true, "width": "14", "collapse": false }, { "id": "af3fd632.935f38", "type": "ui_tab", "name": "Crypto Hash", "icon": "dashboard", "disabled": false, "hidden": false } ] |