I am using DPAPI
(Data Protector API) to protect and unprotect data. I am reading data from the file.
C:\Users\nandkishore.sharma\AppData\Local\Google\Chrome\User Data\Default\WebData.
I am able to read the data from the file (WebData
) if I decrypt data on the same computer(where WebData
is placed). but When I pick the WebData
file from another computer(where file is already encrypted), try to decrypt it at my computer, I am not able to do this.
I found this link How to decrypt data which is crypted by CryptProtectData function?
It says..
"no other computer in the world can decrypt data which is encrypted on different computer."
Is above statement true?
I read out below link but it did not solve my problem.. Unable to Decrypt data on second computer
How can I get the key which is used in encryption (in reference of WebData
file) so that I can use the same key in decrypt?
Please help me to solve this.
Thanks in Advance..