Skip to content

WindowsHello is an assembly/ library to work with Microsoft's Windows Hello in aplications. The assembly was written and tested in .Net 4.8.

License

Notifications You must be signed in to change notification settings

Angelelz/WindowsHello

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WindowsHello

WindowsHello is an assembly/ library to work with Microsoft's Windows Hello in aplications. The assembly was written and tested in .Net 4.8.

Build status GitHub issues GitHub forks GitHub stars GitHub license Nuget NuGet Downloads Known Vulnerabilities

Available for

  • NetFramework 4.5
  • NetFramework 4.6
  • NetFramework 4.6.2
  • NetFramework 4.7
  • NetFramework 4.7.2
  • NetFramework 4.8

Basic usage:

public void WindowsHelloTest()
{
    var handle = new IntPtr();
    var data = new byte[] { 0x32, 0x32 };
    IAuthProvider provider = new WinHelloProvider("Hello", handle);
    var encryptedData = provider.Encrypt(data);
    var decryptedData = provider.PromptToDecrypt(encryptedData);
}

The project can be found on nuget.

Further links

This project is mainly taken from https://github.com/sirAndros/KeePassWinHello.

Change history

  • Version 1.0.2.0 (2019-06-23) : Added icon to the nuget package.
  • Version 1.0.0.1 (2019-05-05) : Updated .Net version to 4.8.
  • Version 1.0.0.0 (2019-02-09) : 1.0 release.

About

WindowsHello is an assembly/ library to work with Microsoft's Windows Hello in aplications. The assembly was written and tested in .Net 4.8.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 94.8%
  • Batchfile 5.2%