Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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');
}
v2.1.0 (2019/12/26)
standard
as lintervar
has been replaced with const
and let
FAQs
safe, constant-time comparison of Buffers
The npm package scmp receives a total of 1,156,453 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.