Encrypted data transfer between Servers Project
Programming Language:- Python
Framework :- Django or Flask
Task:-
- Need to make a system where all the APIs should be encrypted
- RSA 256 can be used in this case. (Also make encryption code in python instead of using packages if possible).
- There will be 3 servers - client, shopping website, bank server
- Also, systems should be made in such a way that they should communicante with each other.
I mean we can put these 3 servers in 3 different computers and it should still work without any communication or network error.
Scenario(Example):- Let’s say I want to buy a product from a website. I went to that website and fill card details in that website, in this case I’m providing card details to the shopping website. Now what I need to implement here is that card details from client server should get encrypted and it should not be seen by the shopping website server, instead what shopping website will do is it will redirect that request to the bank server and bank server will do the decryption of that card details, do the payment and will return whatever the response is.