@groww-tech/encryption
Version:
Encryption service as name suggests provides encryption, decryption facility with all major algorithms in trend.
38 lines (22 loc) • 999 B
Markdown
# encryption
[](https://www.npmjs.com/package/@groww-tech/encryption)
[](https://bundlephobia.com/package/@groww-tech/encryption)

<br/>
Encryption service as name suggests provides encryption, decryption facility with all major algorithms in trend.
### Installation
```
npm i @groww-tech/encryption
```
### API
Encryption has a pretty straight forward API usage.
```
import { encryptAes } from '@groww-tech/encryption';
console.log(encryptAes('Data to encrypt','secret-key')); // Ouput - { data: 'random string', error:null }
```
## License
Encryption is licensed under a [MIT License](./LICENSE).
<br/>
*This package is customized for use in Groww projects. Use at your own risk.*
<br/>
---