Skip to content

Fork to work on a driver for CS9711 - This is very experimental and has veeeery little testing for false positives - don't use for anything that matters - - use upstream at https://gitlab.freedesktop.org/libfprint/libfprint

License

Notifications You must be signed in to change notification settings

Ziomal12/libfprint-CS9711

 
 

Repository files navigation

Proposal fork for support of Chipsailing CS9711Fingprint

This fork of libfprint is a proposal for the Chipsailing CS9711 fingerprint reader, tracked in this issue. This reader is commonly in accessible USB dongles as 2541:0236, and also the one included in the GPD Win Max 2 2023 as 2541:9711.

Note that enrollment count is 15 touches, so insist a bit.

Note also that this is based on an experimental image recognition from the sigfm proposal.

No garantees are made by this author as to the validity and security of this code, while this author is very happy with the result, it should not be used for anything serious without serious testing.

Nix

  services.fprintd.enable = true;
  nixpkgs.overlays = [
    (final: prev: {
      libfprint = prev.libfprint.overrideAttrs (oldAttrs: {
        version = "git";
        src = final.fetchFromGitHub {
          owner = "ericlinagora";
          repo = "libfprint-CS9711";
          rev = "c242a40fcc51aec5b57d877bdf3edfe8cb4883fd";
          sha256 = "sha256-WFq8sNitwhOOS3eO8V35EMs+FA73pbILRP0JoW/UR80=";
        };
        nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [
          final.opencv
          final.cmake
          final.doctest
        ];
      });
    })
  ];

Original README.md left below


LibFPrint

LibFPrint is part of the FPrint project.


Button Website Button Documentation

Button Supported Button Unsupported

Button Contribute Button Contributors

History

LibFPrint was originally developed as part of an academic project at the University Of Manchester.

It aimed to hide the differences between consumer fingerprint scanners and provide a single uniform API to application developers.

Goal

The ultimate goal of the FPrint project is to make fingerprint scanners widely and easily usable under common Linux environments.

License

Section 6 of the license states that for compiled works that use this library, such works must include LibFPrint copyright notices alongside the copyright notices for the other parts of the work.

LibFPrint includes code from NIST's NBIS software distribution.

We include Bozorth3 from the US Export Controlled distribution, which we have determined to be fine being shipped in an open source project.


Badge License

About

Fork to work on a driver for CS9711 - This is very experimental and has veeeery little testing for false positives - don't use for anything that matters - - use upstream at https://gitlab.freedesktop.org/libfprint/libfprint

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 86.2%
  • C++ 10.6%
  • Python 2.2%
  • Meson 0.8%
  • Shell 0.2%
  • Lua 0.0%