
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
The scmp package in npm is a secure, constant-time comparison of strings or buffers. It is primarily used to prevent timing attacks when comparing sensitive data, such as cryptographic hashes or tokens.
Secure String Comparison
This feature allows for the secure comparison of two strings, ensuring that the time taken to compare is constant, thus preventing timing attacks.
const scmp = require('scmp');
const a = 'not_so_secret';
const b = 'not_so_secret';
console.log(scmp(a, b)); // outputs: true
Secure Buffer Comparison
Similar to string comparison, this feature enables the secure, constant-time comparison of two buffers, which is useful for comparing binary data securely.
const scmp = require('scmp');
const buffer1 = Buffer.from('secret_data');
const buffer2 = Buffer.from('secret_data');
console.log(scmp(buffer1, buffer2)); // outputs: true
bcryptjs is a package that provides secure password hashing. While it does not offer direct string comparison like scmp, it is used for securely handling passwords which is a similar domain of security.
The built-in Node.js 'crypto' module provides a method called 'timingSafeEqual' which performs a constant-time comparison of buffers, similar to what scmp does. It is a more comprehensive security toolkit that includes a variety of cryptographic functions.
Safe, constant-time comparison of Buffers.
npm install scmp
To minimize vulnerability against timing attacks.
const scmp = require('scmp');
const Buffer = require('safe-buffer').Buffer;
const hash = Buffer.from('e727d1464ae12436e899a726da5b2f11d8381b26', 'hex');
const givenHash = Buffer.from('e727e1b80e448a213b392049888111e1779a52db', 'hex');
if (scmp(hash, givenHash)) {
console.log('good hash');
} else {
console.log('bad hash');
}
FAQs
safe, constant-time comparison of Buffers
The npm package scmp receives a total of 1,817,341 weekly downloads. As such, scmp popularity was classified as popular.
We found that scmp 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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.