Crypto
Cryptography utilities presented in a simple way
The Orionjs Crypto package provides utility functions for symmetric and asymmetric encryption, decryption, signing, and hashing. It’s built on top of Node.js’s crypto
library and bcryptjs
to provide a simple and secure API for cryptographic operations.
Installation
Features
- Symmetric Encryption: Encrypt and decrypt data using a shared secret key
- Asymmetric Encryption: Encrypt and decrypt data using public/private key pairs
- Signing: Sign and verify data to ensure integrity and authenticity
- Hashing: Create secure hashes for data storage
- Password Hashing: Securely hash passwords with salt for user authentication
Symmetric Encryption
Symmetric encryption uses the same key for both encryption and decryption. This is useful when you need to securely store sensitive data.
Asymmetric Encryption
Asymmetric encryption uses a pair of keys: a public key for encryption and a private key for decryption. This is useful for secure communication between parties.
Signing
Signing allows you to verify the integrity and authenticity of data by creating a signature that can be verified later.
Hashing
Hashing transforms data into a fixed-size string of characters, which is typically a hexadecimal number. This is useful for storing data in a way that cannot be reversed.
Password Hashing with Salt
Password hashing with salt adds an extra layer of security for storing user passwords by adding random data to each password before hashing.
Best Practices
- Key Management: Securely store encryption keys and never hardcode them in your application
- Password Storage: Always use
hashWithSalt
for storing user passwords - Sensitive Data: Use encryption for storing sensitive data like personal information or API keys
- Data Integrity: Use signing to ensure data hasn’t been tampered with
API Reference
Symmetric Encryption
symmetric.generatePassword()
: Generates a secure random passwordsymmetric.encrypt(text: string, password: string)
: Encrypts text using a passwordsymmetric.decrypt(encryptedText: string, password: string)
: Decrypts text using a password
Asymmetric Encryption
asymmetric.generateKeys()
: Generates a key pair (encryptKey
anddecryptKey
)asymmetric.encrypt(encryptKey: string, text: string)
: Encrypts text using a public keyasymmetric.decrypt(decryptKey: string, encryptedText: string)
: Decrypts text using a private key
Signing
sign.sign(payload: string, secret: string)
: Signs a payload with a secretsign.verify(payload: string, checksum: string, secret: string)
: Verifies a signed payload
Hashing
hash.hash(text: string)
: Creates a hash from texthash.compare(text: string, hashed: string)
: Compares text with a hash
Password Hashing with Salt
hashWithSalt.hash(password: string)
: Creates a hash from a password with salthashWithSalt.compare(password: string, hashed: string)
: Compares a password with a hashed value
Was this page helpful?