encrypt-it-mega
v1.0.3
Published
encrypt-it is a powerful and easy-to-use Node.js package that provides tools for securely encrypting and decrypting data. This package aims to simplify the process of securing sensitive information using modern encryption algorithms.
Downloads
6
Readme
Encrypt it mega
encrypt("Hello" , "secretKey")
// {
// type: 'object',
// iv: '28f56c0a37b37457edc30f084bbf8a3b',
// ciphertext: 'U2FsdGVkX19Nx7k7NPDn65bEcBmTm//ryFumL2/1lCrygwk8Y9dr7Z921OySnt9V'
//}
decrypt({
type: 'object',
iv: '28f56c0a37b37457edc30f084bbf8a3b',
ciphertext: 'U2FsdGVkX19Nx7k7NPDn65bEcBmTm//ryFumL2/1lCrygwk8Y9dr7Z921OySnt9V'
})
//"Hello"