
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
deflate-crc32-stream
Advanced tools
deflate-crc32-stream is a streaming deflater with CRC32 checksumer. It uses buffer-crc32 behind the scenes to reliably handle binary data and fancy character sets. Data comes through compressed with zlib.DeflateRaw.
This module has been merged into CRC32Stream. No future updates will be made to this module.
var CRC32Stream = require('deflate-crc32-stream');
var source = fs.createReadStream('file.txt');
var deflate = new DeflateCRC32Stream();
deflate.on('end', function(err) {
// do something with deflate.digest() here
});
// either pipe it
source.pipe(deflate);
// or write it
deflate.write('string');
deflate.end();
Inherits zlib.DeflateRaw methods.
Returns the checksum digest in unsigned form.
Returns the hexadecimal representation of the checksum digest. (ie E81722F0)
Returns the raw uncompressed size/length of passed-through data.
If compressed
is true
, it returns compressed length instead.
Inherits zlib.DeflateRaw options.
FAQs
a streaming deflater with CRC32 checksumer
The npm package deflate-crc32-stream receives a total of 3,936 weekly downloads. As such, deflate-crc32-stream popularity was classified as popular.
We found that deflate-crc32-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.