1
0
mirror of https://github.com/S2-/securerandomstring.git synced 2025-08-01 18:00:06 +02:00

Clarify that the default char set returned is base64 encoded

Also, link to a neutral URL for the MIT license instead of the node-ses repo.
This commit is contained in:
Mark Stosberg
2019-07-12 09:20:40 -04:00
committed by GitHub
parent cb6bbee3b1
commit a6dc243138

View File

@@ -8,7 +8,9 @@ Node.js module that generates a cryptographically secure random string with a gi
var srs = require('secure-random-string');
```
### Default behavior: Generate a random string 32 characters long.
### Default behavior: Generate a random Base64 encoded string 32 characters long.
This may include alphanumeric characters as well as the following characters: +, /, =.
```javascript
// Sync
@@ -64,4 +66,4 @@ the async API returns the error to the callback.
## License
[MIT](https://github.com/aheckmann/node-ses/blob/master/LICENSE)
[MIT](https://opensource.org/licenses/MIT)