Where does Internet Explorer store saved passwords?
        Posted  
        
            by Ian Boyd
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ian Boyd
        
        
        
        Published on 2010-06-11T14:23:29Z
        Indexed on 
            2010/06/11
            14:32 UTC
        
        
        Read the original article
        Hit count: 812
        
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 turn around and use 
to encrypt data with the current user's account. CredRead/CredWrite then store the data in some magical location, which contents 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?
© Stack Overflow or respective owner