I Have table with the Symmentric (AES-128) Encryption on table.
How can decrypt and use it in c# level. I am able to dycrypt again back Sql level but i want to decrypt in c# class of that.
Geettign Error :
For byte[] cipherBytes = Convert.FromBase64String(cipherText);
"The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters"
Nitin SontakkePosted Oct 30, 2017, 6:03 AM
Rakesh reddyPosted Nov 1, 2017, 1:54 AM
Rakesh reddyPosted Oct 30, 2017, 5:50 AM
I Have table with email, Phone for security purpose at DB level we have encrypted those columns.
So i have planned to prepare one partial class with extra columns for decrypted data for the edmx generated class and planning decrypt the value with getter method
Nitin SontakkePosted Oct 30, 2017, 4:20 AM