AdysTech.CredentialManager 1.4.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package AdysTech.CredentialManager --version 1.4.5
NuGet\Install-Package AdysTech.CredentialManager -Version 1.4.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AdysTech.CredentialManager" Version="1.4.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AdysTech.CredentialManager --version 1.4.5
#r "nuget: AdysTech.CredentialManager, 1.4.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AdysTech.CredentialManager as a Cake Addin
#addin nuget:?package=AdysTech.CredentialManager&version=1.4.5

// Install AdysTech.CredentialManager as a Cake Tool
#tool nuget:?package=AdysTech.CredentialManager&version=1.4.5

Library to to store and retreive User credentials from Windows Credential Store

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on AdysTech.CredentialManager:

Package Downloads
Soneta.Business The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Składnik programu Soneta. Program obsługi firmy: kadry-płace, księgowość, handel, magazyn, CRM, BI ...

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on AdysTech.CredentialManager:

Repository Stars
gitextensions/gitextensions
Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).
goatcorp/FFXIVQuickLauncher
Custom launcher for FFXIV
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI
Version Downloads Last updated
2.6.0 93,693 1/19/2022
2.5.0 20,783 11/10/2021
2.4.0 10,329 9/1/2021
2.3.0 157,134 12/20/2020
2.2.0 20,777 5/29/2020
2.1.1 3,443 5/21/2020
2.0.0 2,446 4/25/2020
1.9.5 2,589 4/13/2020
1.7.0 21,203 9/26/2018
1.6.0 1,433 9/25/2018
1.5.0 1,485 9/10/2018
1.4.5 1,559 8/22/2018
1.4.0 1,740 7/5/2018
1.3.0 1,786 6/25/2018
1.2.1 1,902 4/19/2018

C# wrapper around CredWrite / CredRead functions to store and retrieve from Windows Credential Store. Windows OS comes equipped with a very secure robust Credential Manager from Windows Xp onwards, and good set of APIs to interact with it.
However .Net framework did not provide any standard way to interact with this vault until Windows 10.          Need: Many web services and REST Urls use basic authentication. .Net does not have a way to generate basic auth text (username:password encoded in Base64) for the current logged in user, with their credentials. ICredential.GetCredential (uri, "Basic") does not provide a way to get current user security context either as it will expose the current password in plain text. So only way to retrieve Basic auth text is to prompt the user for the credentials and storing it, or assume some stored credentials in Windows store, and retrieving it. The library provides
         1. Prompt user for Credentials
         2. Save Credentials
         3. Retrieve saved Credentials
Based on Microsoft Peer Channel blog (WCF team) post from 2005