migrating from u2f-api.js to webauthn

master
FreddleSpl0it 2022-01-13 08:15:56 +01:00 committed by GitHub
parent d97a220834
commit 59c8116247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -464,7 +464,11 @@ if (isset($_GET['query'])) {
if (isset($_SESSION["mailcow_cc_role"])) {
$excludeCredentialIds = null;
$createArgs = $WebAuthn->getCreateArgs($_SESSION["mailcow_cc_username"], $_SESSION["mailcow_cc_username"], $_SESSION["mailcow_cc_username"], 30, false, $GLOBALS['WEBAUTHN_UV_FLAG_REGISTER'], true);
// getCreateArgs($userId, $userName, $userDisplayName, $timeout=20, $requireResidentKey=false, $requireUserVerification=false, $crossPlatformAttachment=null, $excludeCredentialIds=array())
// cross-platform: true, if type internal is not allowed
// // false, if only internal is allowed
// // null, if internal and cross-platform is allowed
$createArgs = $WebAuthn->getCreateArgs($_SESSION["mailcow_cc_username"], $_SESSION["mailcow_cc_username"], $_SESSION["mailcow_cc_username"], 30, false, $GLOBALS['WEBAUTHN_UV_FLAG_REGISTER'], null);
print(json_encode($createArgs));
$_SESSION['challenge'] = $WebAuthn->getChallenge();