Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
crypto2 is a convenience wrapper around Node.js' crypto module.
$ npm install crypto2
First you need to integrate crypto2 with your application. For that add a reference to the crypto2
module.
const crypto2 = require('crypto2');
For encrypting and decrypting you will need a password. You can either use an existing one or you can create a new one by calling the createPassword
function. This function creates passwords with 32 bytes (256 bits) length consisting of lowercase and uppercase letters and digits:
const password = await crypto2.createPassword();
For signing and verifying as well as for encrypting and decrypting using asymmetric encryption algorithms you will need a PEM encoded private and public key pair. You can use the openssl
command-line tool to create both of them:
$ openssl genrsa -out privateKey.pem 2048
$ openssl rsa -in privateKey.pem -pubout > publicKey.pem
Alternatively the key pair may be created programmatically by calling the createKeyPair
function. This function creates a 2048-bit strong RSA key pair in PEM format:
const { privateKey, publicKey } = await crypto2.createKeyPair();
To load a private key from a .pem
file call the readPrivateKey
function and specify the name of the key file:
const privateKey = await crypto2.readPrivateKey('key.pem');
To load a public key from a .pub
file call the readPublicKey
function and specify the name of the key file:
const publicKey = await crypto2.readPublicKey('key.pub');
If you want crypto2 to select an encryption algorithm for you, call the encrypt
and decrypt
functions without any specific algorithm. This defaults to the AES 256 CBC encryption algorithm:
const encrypted = await crypto2.encrypt('the native web', password);
// => 6c9ae06e9cd536bf38d0f551f8150065
const decrypted = await crypto2.decrypt('6c9ae06e9cd536bf38d0f551f8150065', password);
// => the native web
To encrypt and decrypt using the AES 256 CBC encryption algorithm call the encrypt.aes256cbc
and decrypt.aes256cbc
functions:
const encrypted = await crypto2.encrypt.aes256cbc('the native web', password);
// => 6c9ae06e9cd536bf38d0f551f8150065
const decrypted = await crypto2.decrypt.aes256cbc('6c9ae06e9cd536bf38d0f551f8150065', password);
// => the native web
To encrypt and decrypt using the asymmetric RSA encryption algorithm call the encrypt.rsa
and decrypt.rsa
functions. Due to technical limitations of the RSA algorithm the text to be encrypted must not be longer than 215 bytes when using keys with 2048 bits:
const encrypted = await crypto2.encrypt.rsa('the native web', publicKey);
// => [...]
const decrypted = await crypto2.decrypt.rsa(encrypted, privateKey);
// => the native web
If you want crypto2 to select a signing algorithm for you, call the sign
and verify
functions without any specific algorithm. This defaults to the SHA256 signing algorithm:
const signature = await crypto2.sign('the native web', privateKey);
// => [...]
const isSignatureValid = await crypto2.verify('the native web', publicKey, signature);
// => true
To sign and verify using the SHA256 signing algorithm call the sign.sha256
and verify.sha256
functions:
const signature = await crypto2.sign.sha256('the native web', privateKey);
// => [...]
const isSignatureValid = await crypto2.verify.sha256('the native web', publicKey, signature);
// => true
If you want crypto2 to select a hash algorithm for you, call the hash
function without any specific algorithm. This defaults to the SHA256 hash algorithm:
const hash = await crypto2.hash('the native web');
// => 55a1f59420da66b2c4c87b565660054cff7c2aad5ebe5f56e04ae0f2a20f00a9
To calculate the MD5 hash value of a string call the hash.md5
function:
const hash = await crypto2.hash.md5('the native web');
// => 4e8ba2e64931c64b63f4dc8d90e1dc7c
To calculate the SHA1 hash value of a string call the hash.sha1
function:
const hash = await crypto2.hash.sha1('the native web');
// => cc762e69089ee2393b061ab26a005319bda94744
To calculate the SHA256 hash value of a string call the hash.sha256
function:
const hash = await crypto2.hash.sha256('the native web');
// => 55a1f59420da66b2c4c87b565660054cff7c2aad5ebe5f56e04ae0f2a20f00a9
If you want crypto2 to select a HMAC algorithm for you, call the hmac
function without any specific algorithm. This defaults to the SHA256 hash algorithm:
const hmac = await crypto2.hmac('the native web', 'secret');
// => 028e3043f9d848e346c8a93c4c29b091cb871065b6f5d1199f38e5a7360532f4
To calculate the SHA1-based HMAC value of a string call the hmac.sha1
function:
const hmac = await crypto2.hmac.sha1('the native web', 'secret');
// => c9a6cdb2d350820e76a14f4f9a6392990ce1982a
To calculate the SHA256-based HMAC value of a string call the hmac.sha256
function:
const hmac = await crypto2.hmac.sha256('the native web', 'secret');
// => 028e3043f9d848e346c8a93c4c29b091cb871065b6f5d1199f38e5a7360532f4
To build this module use roboter.
$ bot
The MIT License (MIT) Copyright (c) 2013-2018 the native web.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
crypto2 is a convenience wrapper around Node.js' crypto module.
We found that crypto2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.