I want to create an application that can encrypt and decrypt my passwords using C#.
My idea is simple. I will use Substring to extract each letter from the entered string and I will manipulate the ASCI code and convert it to another letter. I will use the same method to encrypt them.
How difficult is it for someone to decrypt my generated password?
I’m looking for either suggestions or example code.
In .NET there are a lot of secure ways for encryption. I think that instead of trying to implement yourself a solution you should better take a look at System.Security.Cryptography.