henryvuong
Member
- Joined
- Sep 8, 2023
- Messages
- 15
- Programming Experience
- 3-5
I am creating a program with C# .NET and SQL Server to make API calls to Amazon. To make these calls, I would need to provide ID and secret codes to Amazon. I store this info in a separate database table. I need to find a way to encrypt this info instead of storing it as plain text. I read about hashing and salting. But to my understanding, this method seems to be one-way. Once you salt and hash them, the codes can not be reversed to their original form. In my case, I need to retrieve the ID and secret codes in their original form from the database. It can either be done with SQL Server commands or C# codes. My program runs on desktops within a local network so the chance of getting an intruder is low. Any form of encryption should be sufficient.
Please advise.
Please advise.