Skip to content

Commit fbe5509

Browse files
authored
Merge pull request #2481 from AzureAD/veena/PasskeyBiometric
Veena/passkey biometric
2 parents 379364e + d674674 commit fbe5509

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

MSAL/src/MSALErrorConverter.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ + (void)initialize
113113
@(MSIDErrorDeviceNotPSSORegistered) : @(MSALErrorDeviceNotPSSORegistered),
114114
@(MSIDErrorPSSOKeyIdMismatch) : @(MSALErrorPSSOKeyIdMismatch),
115115
@(MSIDErrorJITErrorHandlingConfigNotFound) : @(MSALErrorJITErrorHandlingConfigNotFound),
116+
@(MSIDErrorPSSOBiometricPolicyMismatch) : @(MSALErrorPSSOBiometricPolicyMismatch),
117+
@(MSIDErrorPSSOInvalidPasskeyExtension) : @(MSALErrorPSSOInvalidPasskeyExtension),
118+
@(MSIDErrorPSSOSaveLoginConfigFailure) :@(MSALErrorPSSOSaveLoginConfigFailure),
116119

117120
// Oauth2 errors
118121
@(MSIDErrorServerOauth) : @(MSALInternalErrorAuthorizationFailed),

MSAL/src/public/MSALError.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,4 +531,19 @@ typedef NS_ENUM(NSInteger, MSALInternalError)
531531
*/
532532
MSALErrorJITErrorHandlingConfigNotFound = -42738,
533533

534+
/**
535+
PSSO passkey - Biometric policy flag doesnt match with the loginConfig settings
536+
*/
537+
MSALErrorPSSOBiometricPolicyMismatch = -42739,
538+
539+
/**
540+
PSSO passkey - Invalid Passkey extension trying to access passkey
541+
*/
542+
MSALErrorPSSOInvalidPasskeyExtension = -42740,
543+
544+
/**
545+
PSSO save login config failure
546+
*/
547+
548+
MSALErrorPSSOSaveLoginConfigFailure = -42741,
534549
};

0 commit comments

Comments
 (0)