Windows equivalent of OS X Keychain?

WindowsSecurityPasswords

Windows Problem Overview


Is there an equivalent of the OS X Keychain, used to store user passwords, in Windows? I would use it to save the user's password for a web service that my (desktop) software uses.

From the answers to this related question (Protecting user passwords in desktop applications (Rev 2)) and the multitude of third party password storage tools available, I assume that such a thing doesn't exist-- Am I stuck with either asking for the password each time I access the web service, or just storing it obfuscated?

Windows Solutions


Solution 1 - Windows

It is year 2018, and Windows 10 has a "Credential Manager" that can be found in "Control Panel"

Solution 2 - Windows

The "traditional" Windows equivalent would be the Protected Storage subsystem, used by IE (pre IE 7), Outlook Express, and a few other programs. I believe it's encrypted with your login password, which prevents some offline attacks, but once you're logged in, any program that wants to can read it. (See, for example, NirSoft's Protected Storage PassView.)

Windows also provides the CryptoAPI and Data Protection API that might help. Again, though, I don't think that Windows does anything to prevent processes running under the same account from seeing each other's passwords.

It looks like the book Mechanics of User Identification and Authentication provides more details on all of these.

Eclipse (via its Secure Storage feature) implements something like this, if you're interested in seeing how other software does it.

Solution 3 - Windows

Windows 8 has a notion of a keychain called Password Vault. Windows Runtime apps (Modern/Metro) as well as managed desktop apps can make use of it. According to the documentation:

> Apps and services don't have access to credentials associated with other apps or services.

See How to store user credentials on MSDN.

Pre-Windows 8, Data Protection API (DPAPI) is the closest equivalent to a keychain. Arbitrary data can be encrypted using this API, although storing the encrypted data is up to the developer. The data is ultimately encrypted using the current user's password, however user or developer supplied "optional entropy" could be included to further protect the data from other software or users. The data can also be decrypted on different computers in a domain.

DPAPI can be accessed through native calls to Crypt32.dll's CryptProtectData and CryptUnprotectData functions or through .NET Framework's ProtectedData class, which is a limited feature wrapper for the former functions.

More information than you ever needed to know about DPAPI is available in Passcape's article DPAPI Secrets. Security analysis and data recovery in DPAPI.

Solution 4 - Windows

Actually, looking through MSDN, the functions they recommend using (instead of Protected Storage) are:

  • CryptProtectData
  • CryptUnprotectData

The link for CryptProtectData is at CryptProtectData function.

Solution 5 - Windows

OS X keychain equivalent is Credential Manager in windows.

Solution 6 - Windows

A free and open source password manager that keeps all of your passwords safe in one place is "KeePass" and alternative to Windows Credential Manager.

Solution 7 - Windows

If you are on windows got to control pannel -> windows Credentials

Solution 8 - Windows

Credential dumping on Windows, even with "Credential Manager" is still an issue, and I don't think there is any way to prevent it outside of special hardware. MacOS keychain doesn't have this problem and so I don't think there is an exact equivalent.

Solution 9 - Windows

Yes. The answer is Credential locker

There are specific UWP APIs for it, and I believe you can access the same APIs from WinUI 3

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondF.View Question on Stackoverflow
Solution 1 - WindowsMikserView Answer on Stackoverflow
Solution 2 - WindowsJosh KelleyView Answer on Stackoverflow
Solution 3 - WindowsjordanbtuckerView Answer on Stackoverflow
Solution 4 - WindowsjimsView Answer on Stackoverflow
Solution 5 - WindowsMohitView Answer on Stackoverflow
Solution 6 - Windowsitsuupport.comView Answer on Stackoverflow
Solution 7 - Windowsabhinav kumarView Answer on Stackoverflow
Solution 8 - WindowsGabrielView Answer on Stackoverflow
Solution 9 - WindowsChristian FindlayView Answer on Stackoverflow