I have a Django project and I am using the django-encrypted field.
What I liked to do is only using encryption in his project. I did that by setting ENCRYPTED_FIELD_MODE = 'ENCRYPT'
This way there's no possibility to decrypt the encrypted value.
Step 2 is to decrypt the value from another project. At this point I'm stuck.
I'd like to decrypt the encrypted value from another server by using the private key. Can anyone explain me how I can do that?
I'm kinda new in the whole encrypting world especially using public and private keys.
I know there is a private and a public key. How can I save the private key on another server and use it to decrypt encrypted values?
Greetz, Nelson Varela.