Where does Internet Explorer store saved passwords?
And since this is a programming site, i'm not literally asking for the location where IE stores passwords, but which API ie uses to save passwords.
At first i assumed that Microsoft was using the standard api:
which is used to save domain and generic program/web-site credentials.
CredRead/CredWrite then turn around around and use:
to encrypt data with the current user's account. CredRead/CredWrite then store the data in some magical location, contents of which you can see from the Control Panel:

But i don't see IE passwords in there. So ie doesn't store passwords using CredRead/CredWrite.
What api does IE use to store passwords, and if it uses CryptProtectData, where does it then store the protected data?
Edit: The reason i ask needs no explanation (since it's pretty obvious), but it's because i might want to use the same mechanism.