DEV Community

Discussion on: How do you store private keys?

Collapse
 
king11 profile image
Lakshya Singh • Edited

I usually find a package to encrypt my files and then decrypt them before deploying
For python based apps i use pyAesCrypt for nodejs you don't need anything the crypto package already available with nodejs comes to rescue.

Django Based Example
NodeJS Express API Example