Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
secure-random-string
Advanced tools
Node.js module that generates a cryptographically secure random string with a given length
var srs = require('secure-random-string');
This may include alphanumeric characters as well as the following characters: +, /, =.
// Sync
var result = srs();
// Async
srs(function(err, sr) {
console.log(sr);
});
Optionally, you can specify a 'length' option to specify a length.
// sync
var result = srs({length: 256});
// async
srs({length: 256}, function(err, sr) {
console.log(sr);
});
Optionally, you can specify a 'alphanumeric' option to get a alphanumerical chars only.
// sync
var result = srs({alphanumeric: true});
// async
srs({alphanumeric: true}, function(err, sr) {
console.log(sr);
});
An error is possible if there is not enough accumulated entropy to generate cryptographically strong data. In other words, this will not block even if all entropy sources are drained. Note that the sync API throws an exception, while the async API returns the error to the callback.
[1.1.4] 2024-09-26
securerandomstring
would throw an exception. Now it will retry to generate a random string until it succeeds, or the call stack becomes full.FAQs
Generates a secure random string with a given length
The npm package secure-random-string receives a total of 2,171 weekly downloads. As such, secure-random-string popularity was classified as popular.
We found that secure-random-string demonstrated a healthy version release cadence and project activity because the last version was released less than 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.