-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Passkey is a more general term that the industry is using currently. Signed-off-by: Iker Pedrosa <[email protected]> Reviewed-by: Justin Stephenson <[email protected]> Reviewed-by: Sumit Bose <[email protected]>
- Loading branch information
Showing
13 changed files
with
112 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
AC_SUBST(PASSKEY_LIBS) | ||
AC_SUBST(PASSKEY_CFLAGS) | ||
|
||
PKG_CHECK_MODULES([FIDO2], [libfido2], [found_passkey=yes], [found_passkey=no]) | ||
|
||
SSS_AC_EXPAND_LIB_DIR() | ||
AS_IF([test x"$found_passkey" = xyes], | ||
[AC_CHECK_HEADER([fido.h], | ||
[AC_CHECK_LIB([fido2], | ||
[fido_dev_has_uv], | ||
[found_passkey=yes] [PASSKEY_LIBS="-lfido2"], | ||
[found_passkey=no])], | ||
[found_passkey=no] | ||
)] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
SSSD | ||
Helper child to commmunicate with FIDO2 devices | ||
Helper child to commmunicate with passkey devices | ||
Authors: | ||
Iker Pedrosa <[email protected]> | ||
|
@@ -28,12 +28,12 @@ | |
#include "util/debug.h" | ||
#include "util/util.h" | ||
|
||
#include "fido2_child.h" | ||
#include "passkey_child.h" | ||
|
||
int main(int argc, const char *argv[]) | ||
{ | ||
TALLOC_CTX *main_ctx = NULL; | ||
struct fido2_data data; | ||
struct passkey_data data; | ||
int init_flags = 0; | ||
errno_t ret = EOK; | ||
|
||
|
@@ -43,7 +43,7 @@ int main(int argc, const char *argv[]) | |
goto done; | ||
} | ||
|
||
DEBUG(SSSDBG_TRACE_FUNC, "fido2_child started.\n"); | ||
DEBUG(SSSDBG_TRACE_FUNC, "passkey_child started.\n"); | ||
|
||
main_ctx = talloc_new(NULL); | ||
if (main_ctx == NULL) { | ||
|
Oops, something went wrong.