Encryption lib
npm install @sihay.ztch/encrypt_libThis library provide support for encryption and decryption
``javascript
import { encrypt } from '../encryption';
const input = 'Text to ecrypt';
const secret = 'long-secret-string';
const ecryptedText = await encrypt(input, secret);
`
`javascript
import { decrypt } from '../decryption';
const ecryptedText = 'encrypted-text';
const secret = 'long-secret-string';
const text = await encrypt(ecryptedText, secret);
`
`bash``
$ npm install --save @sihay.ztch/encrypt_lib