node-checksum-buffer
A node module that uses multihash to make checksummed buffers. The checksum is at the beginning of the buffer (not at the end) because the multihash defines its own length.
Example
> cat try.js
var CkBuffer = // let's make some datavar buf = 'beep boop'console // let's checksum that datavar ckbuf = buf 'sha1'console // check if the checksum passesconsole // get the checksum onlyconsole // get the raw data backvar data = ckbufdataconsole // Oooh! let's mess with the data!datadatalength - 1 = 0x00consoleconsole // you can write to the data bufferdataconsole // but make sure to recalculateaconsoleconsoleconsole
> node try.js
buffer: <Buffer 62 65 65 70 20 62 6f 6f 70>
ckbuffer: <Buffer 11 14 7c 83 57 57 7f 51 d4 f0 a8 d3 93 aa 1a aa fb 28 86 3d 94 21 62 65 65 70 20 62 6f 6f 70>
ok? true
checksum: <Buffer 11 14 7c 83 57 57 7f 51 d4 f0 a8 d3 93 aa 1a aa fb 28 86 3d 94 21>
data: <Buffer 62 65 65 70 20 62 6f 6f 70>
<Buffer 11 14 7c 83 57 57 7f 51 d4 f0 a8 d3 93 aa 1a aa fb 28 86 3d 94 21 62 65 65 70 20 62 6f 6f 00>
ok? false
new data: <Buffer 62 6f 6f 70 20 62 65 65 70>
ok? false
new cksum: <Buffer 11 14 83 2a 65 89 c9 19 5a 72 c0 ae 07 91 47 d5 51 e8 9a 97 20 bd>
ok? true