I am talking about the information visible if you open "Credential Manager" from the control panel or start menu. If you tell IE to save a password it's visible in there.
I already know about the wrapper for Advapi32.dll (http://www.nuget.org/packages/CredentialManagement/) that offers easy functionality of the functions:
CredReadW
CredWriteW
CredDeleteW
etc.
but at this point I am not even sure if those are the right functions to interact with website authentication data. I wasn't able to read existing or write new web authentication data with those functions (I don't even fully understand the credential types). Writing & reading CRED_TYPE_GENERIC credentials worked though.
How do I read and write website authentication data from C#?
I am ready to p/invoke if necessary.