├── .clinerules ├── 01-Workforce-tenant-configuration.md ├── 02-External-tenant-configuration.md ├── 03-MSAL-API-usage.md ├── 04-Code-style-guidelines.md ├── 05-feature-gating.md └── AGENTS.md ├── .cursor └── rules │ └── ruler_cursor_instructions.mdc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation.yml │ └── feature_request.yml ├── config.yml └── stale.yml ├── .gitignore ├── .gitmodules ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODEOWNERS ├── Images └── keychain_example.png ├── LICENSE ├── MSAL.podspec ├── MSAL.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDETemplateMacros.plist │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── MSAL ├── .swiftlint.yml ├── MSAL Test App.entitlements ├── MSAL.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── MSAL (Mac Framework).xcscheme │ │ ├── MSAL (Mac Static Library).xcscheme │ │ ├── MSAL (iOS Framework).xcscheme │ │ ├── MSAL (iOS Static Library).xcscheme │ │ ├── MSAL Mac Native Auth E2E Tests.xcscheme │ │ ├── MSAL Test App (Mac).xcscheme │ │ ├── MSAL Test App (iOS).xcscheme │ │ ├── MSAL Test Automation (iOS).xcscheme │ │ ├── MSAL iOS Native Auth E2E Tests.xcscheme │ │ ├── unit-test-host-mac.xcscheme │ │ └── unit-test-host.xcscheme ├── PrivacyInfo.xcprivacy ├── module.modulemap ├── resources │ ├── ios │ │ └── Info.plist │ └── mac │ │ └── Info.plist ├── src │ ├── MSAL.pch │ ├── MSALAccount+Internal.h │ ├── MSALAccount.m │ ├── MSALAccountEnumerationParameters+Private.h │ ├── MSALAccountEnumerationParameters.m │ ├── MSALAccountId+Internal.h │ ├── MSALAccountId.m │ ├── MSALAuthScheme.h │ ├── MSALAuthScheme.m │ ├── MSALAuthenticationSchemeBearer+Internal.h │ ├── MSALAuthenticationSchemeBearer.m │ ├── MSALAuthenticationSchemePop+Internal.h │ ├── MSALAuthenticationSchemePop.m │ ├── MSALAuthenticationSchemeProtocolInternal.h │ ├── MSALClaimsRequest+Internal.h │ ├── MSALClaimsRequest.m │ ├── MSALDeviceInformation+Internal.h │ ├── MSALDeviceInformation.m │ ├── MSALError.m │ ├── MSALErrorConverter+Internal.h │ ├── MSALErrorConverter.h │ ├── MSALErrorConverter.m │ ├── MSALFramework.m │ ├── MSALHttpMethod.m │ ├── MSALIndividualClaimRequest+Internal.h │ ├── MSALIndividualClaimRequest.m │ ├── MSALIndividualClaimRequestAdditionalInfo+Internal.h │ ├── MSALIndividualClaimRequestAdditionalInfo.m │ ├── MSALInteractiveTokenParameters.m │ ├── MSALParameters.m │ ├── MSALPromptType.m │ ├── MSALPromptType_Internal.h │ ├── MSALPublicClientApplication+Internal.h │ ├── MSALPublicClientApplication.m │ ├── MSALPublicClientStatusNotifications.m │ ├── MSALResult+Internal.h │ ├── MSALResult.m │ ├── MSALSignoutParameters.m │ ├── MSALSilentTokenParameters.m │ ├── MSALTelemetryApiId.h │ ├── MSALTenantProfile+Internal.h │ ├── MSALTenantProfile.m │ ├── MSALTokenParameters+Internal.h │ ├── MSALTokenParameters.m │ ├── MSALWPJMetaData+Internal.h │ ├── MSALWPJMetaData.m │ ├── MSALWebviewType.m │ ├── MSALWebviewType_Internal.h │ ├── MSAL_Internal.h │ ├── MSIDInteractiveRequestParameters+MSALRequest.h │ ├── MSIDInteractiveRequestParameters+MSALRequest.m │ ├── MSIDVersion.m │ ├── configuration │ │ ├── MSALCacheConfig+Internal.h │ │ ├── MSALCacheConfig.m │ │ ├── MSALExtraQueryParameters.h │ │ ├── MSALExtraQueryParameters.m │ │ ├── MSALGlobalConfig+Internal.h │ │ ├── MSALGlobalConfig.m │ │ ├── MSALHTTPConfig+Internal.h │ │ ├── MSALHTTPConfig.m │ │ ├── MSALLoggerConfig+Internal.h │ │ ├── MSALLoggerConfig.m │ │ ├── MSALPublicClientApplicationConfig+Internal.h │ │ ├── MSALPublicClientApplicationConfig.m │ │ ├── MSALSliceConfig.m │ │ ├── MSALTelemetryConfig+Internal.h │ │ ├── MSALTelemetryConfig.m │ │ ├── MSALWebviewParameters.m │ │ ├── MSALWipeCacheForAllAccountsConfig.m │ │ └── external │ │ │ ├── MSALExternalAccountHandler.h │ │ │ ├── MSALExternalAccountHandler.m │ │ │ ├── MSALSerializedADALCacheProvider+Internal.h │ │ │ ├── MSALSerializedADALCacheProvider.m │ │ │ └── ios │ │ │ ├── MSALLegacySharedADALAccount.h │ │ │ ├── MSALLegacySharedADALAccount.m │ │ │ ├── MSALLegacySharedAccount.h │ │ │ ├── MSALLegacySharedAccount.m │ │ │ ├── MSALLegacySharedAccountFactory.h │ │ │ ├── MSALLegacySharedAccountFactory.m │ │ │ ├── MSALLegacySharedAccountsProvider+Internal.h │ │ │ ├── MSALLegacySharedAccountsProvider.m │ │ │ ├── MSALLegacySharedMSAAccount.h │ │ │ ├── MSALLegacySharedMSAAccount.m │ │ │ ├── NSString+MSALAccountIdenfiers.h │ │ │ └── NSString+MSALAccountIdenfiers.m │ ├── instance │ │ ├── MSALAADAuthority.m │ │ ├── MSALADFSAuthority.m │ │ ├── MSALAccountsProvider.h │ │ ├── MSALAccountsProvider.m │ │ ├── MSALAuthority.m │ │ ├── MSALAuthority_Internal.h │ │ ├── MSALB2CAuthority.m │ │ ├── MSALB2CAuthority_Internal.h │ │ ├── MSALCIAMAuthority.m │ │ ├── MSALDeviceInfoProvider.h │ │ ├── MSALDeviceInfoProvider.m │ │ ├── MSALOauth2Authority.h │ │ ├── MSALOauth2Authority.m │ │ ├── MSALOauth2ProviderFactory.h │ │ ├── MSALOauth2ProviderFactory.m │ │ ├── MSALSSOExtensionRequestHandler.h │ │ ├── MSALSSOExtensionRequestHandler.m │ │ └── oauth2 │ │ │ ├── MSALOauth2Provider+Internal.h │ │ │ ├── MSALOauth2Provider.h │ │ │ ├── MSALOauth2Provider.m │ │ │ ├── aad │ │ │ ├── MSALAADOauth2Provider.h │ │ │ └── MSALAADOauth2Provider.m │ │ │ ├── adfs │ │ │ ├── MSALADFSOauth2Provider.h │ │ │ └── MSALADFSOauth2Provider.m │ │ │ ├── b2c │ │ │ ├── MSALB2COauth2Provider.h │ │ │ └── MSALB2COauth2Provider.m │ │ │ └── ciam │ │ │ ├── MSALCIAMOauth2Provider.h │ │ │ └── MSALCIAMOauth2Provider.m │ ├── native_auth │ │ ├── MSALNativeAuthInternalError.swift │ │ ├── MSALNativeAuthLogMessage.swift │ │ ├── cache │ │ │ ├── MSALNativeAuthCacheAccessor.swift │ │ │ └── MSALNativeAuthCacheInterface.swift │ │ ├── client_application_wrapper │ │ │ └── silent_token │ │ │ │ ├── MSALNativeAuthSilentTokenProvider.swift │ │ │ │ ├── MSALNativeAuthSilentTokenProviding.swift │ │ │ │ └── factory │ │ │ │ ├── MSALNativeAuthSilentTokenProviderBuildable.swift │ │ │ │ └── MSALNativeAuthSilentTokenProviderFactory.swift │ │ ├── configuration │ │ │ └── MSALNativeAuthInternalConfiguration.swift │ │ ├── controllers │ │ │ ├── MSALNativeAuthBaseController.swift │ │ │ ├── MSALNativeAuthControllerTelemetryWrapper.swift │ │ │ ├── MSALNativeAuthTokenController.swift │ │ │ ├── credentials │ │ │ │ ├── MSALNativeAuthCredentialsController.swift │ │ │ │ └── MSALNativeAuthCredentialsControlling.swift │ │ │ ├── factories │ │ │ │ ├── MSALNativeAuthCacheAccessorFactory.swift │ │ │ │ ├── MSALNativeAuthControllerFactory.swift │ │ │ │ └── MSALNativeAuthResultFactory.swift │ │ │ ├── jit │ │ │ │ ├── MSALNativeAuthJITController.swift │ │ │ │ └── MSALNativeAuthJITControlling.swift │ │ │ ├── reset_password │ │ │ │ ├── MSALNativeAuthResetPasswordController.swift │ │ │ │ └── MSALNativeAuthResetPasswordControlling.swift │ │ │ ├── responses │ │ │ │ ├── CodeRequiredGenericResult.swift │ │ │ │ ├── JITResults.swift │ │ │ │ ├── MFAResults.swift │ │ │ │ ├── ResetPasswordResults.swift │ │ │ │ ├── SignInResults.swift │ │ │ │ └── SignUpResults.swift │ │ │ ├── sign_in │ │ │ │ ├── MSALNativeAuthInternalSignInParameters.swift │ │ │ │ ├── MSALNativeAuthMFAControlling.swift │ │ │ │ ├── MSALNativeAuthSignInController.swift │ │ │ │ └── MSALNativeAuthSignInControlling.swift │ │ │ └── sign_up │ │ │ │ ├── MSALNativeAuthSignUpController.swift │ │ │ │ └── MSALNativeAuthSignUpControlling.swift │ │ ├── extension │ │ │ └── Array+joinScopes.swift │ │ ├── input_validator │ │ │ └── MSALNativeAuthInputValidator.swift │ │ ├── logger │ │ │ ├── MSALLogMask.h │ │ │ ├── MSALLogMask.m │ │ │ ├── MSALNativeAuthLogger.swift │ │ │ └── MSALNativeAuthLogging.swift │ │ ├── network │ │ │ ├── MSALNativeAuthBaseSuccessResponse.swift │ │ │ ├── MSALNativeAuthCustomErrorSerializer.swift │ │ │ ├── MSALNativeAuthEndpoint.swift │ │ │ ├── MSALNativeAuthGrantType.swift │ │ │ ├── MSALNativeAuthInternalCapability.swift │ │ │ ├── MSALNativeAuthInternalChallengeType.swift │ │ │ ├── MSALNativeAuthRequestConfigurator.swift │ │ │ ├── MSALNativeAuthRequestParametersKey.swift │ │ │ ├── MSALNativeAuthResponseCorrelatable.swift │ │ │ ├── MSALNativeAuthResponseErrorHandler.swift │ │ │ ├── MSALNativeAuthResponseSerializer.swift │ │ │ ├── MSALNativeAuthUnknownCaseProtocol.swift │ │ │ ├── MSALNativeAuthUrlRequestSerializer.swift │ │ │ ├── errors │ │ │ │ ├── MSALNativeAuthESTSApiErrorCodes.swift │ │ │ │ ├── MSALNativeAuthESTSApiErrorDescriptions.swift │ │ │ │ ├── MSALNativeAuthErrorMessage.swift │ │ │ │ ├── MSALNativeAuthInnerError.swift │ │ │ │ ├── MSALNativeAuthResponseError.swift │ │ │ │ ├── MSALNativeAuthSubErrorCode.swift │ │ │ │ ├── jit │ │ │ │ │ ├── MSALNativeAuthJITChallengeOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthJITChallengeResponseError.swift │ │ │ │ │ ├── MSALNativeAuthJITContinueOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthJITContinueResponseError.swift │ │ │ │ │ ├── MSALNativeAuthJITIntrospectOauth2ErrorCode.swift │ │ │ │ │ └── MSALNativeAuthJITIntrospectResponseError.swift │ │ │ │ ├── reset_password │ │ │ │ │ ├── MSALNativeAuthResetPasswordChallengeOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordChallengeResponseError.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordContinueOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordContinueResponseError.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionResponseError.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordStartOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordStartResponseError.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordSubmitOauth2ErrorCode.swift │ │ │ │ │ └── MSALNativeAuthResetPasswordSubmitResponseError.swift │ │ │ │ ├── sign_in │ │ │ │ │ ├── MSALNativeAuthSignInChallengeOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthSignInChallengeResponseError.swift │ │ │ │ │ ├── MSALNativeAuthSignInInitiateOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthSignInInitiateResponseError.swift │ │ │ │ │ ├── MSALNativeAuthSignInIntrospectOauth2ErrorCode.swift │ │ │ │ │ └── MSALNativeAuthSignInIntrospectResponseError.swift │ │ │ │ ├── sign_up │ │ │ │ │ ├── MSALNativeAuthErrorBasicAttribute.swift │ │ │ │ │ ├── MSALNativeAuthRequiredAttributeInternal.swift │ │ │ │ │ ├── MSALNativeAuthRequiredAttributeOptions.swift │ │ │ │ │ ├── MSALNativeAuthSignUpChallengeOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthSignUpChallengeResponseError.swift │ │ │ │ │ ├── MSALNativeAuthSignUpContinueOauth2ErrorCode.swift │ │ │ │ │ ├── MSALNativeAuthSignUpContinueResponseError.swift │ │ │ │ │ ├── MSALNativeAuthSignUpStartOauth2ErrorCode.swift │ │ │ │ │ └── MSALNativeAuthSignUpStartResponseError.swift │ │ │ │ └── token │ │ │ │ │ ├── MSALNativeAuthTokenOauth2ErrorCode.swift │ │ │ │ │ └── MSALNativeAuthTokenResponseError.swift │ │ │ ├── jit │ │ │ │ └── MSALNativeAuthJITRequestProvider.swift │ │ │ ├── parameters │ │ │ │ ├── MSALNativeAuthRequestContext.swift │ │ │ │ ├── MSALNativeAuthRequestable.swift │ │ │ │ ├── jit │ │ │ │ │ ├── MSALNativeAuthJITChallengeRequestParameters.swift │ │ │ │ │ ├── MSALNativeAuthJITContinueRequestParameters.swift │ │ │ │ │ └── MSALNativeAuthJITIntrospectRequestParameters.swift │ │ │ │ ├── reset_password │ │ │ │ │ ├── MSALNativeAuthResetPasswordChallengeRequestParameters.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordContinueRequestParameters.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionRequestParameters.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordStartRequestParameters.swift │ │ │ │ │ └── MSALNativeAuthResetPasswordSubmitRequestParameters.swift │ │ │ │ ├── sign_in │ │ │ │ │ ├── MSALNativeAuthSignInChallengeRequestParameters.swift │ │ │ │ │ ├── MSALNativeAuthSignInInitiateRequestParameters.swift │ │ │ │ │ └── MSALNativeAuthSignInIntrospectRequestParameters.swift │ │ │ │ ├── sign_up │ │ │ │ │ ├── MSALNativeAuthSignUpChallengeRequestParameters.swift │ │ │ │ │ ├── MSALNativeAuthSignUpContinueRequestParameters.swift │ │ │ │ │ └── MSALNativeAuthSignUpStartRequestParameters.swift │ │ │ │ └── token │ │ │ │ │ └── MSALNativeAuthTokenRequestParameters.swift │ │ │ ├── reset_password │ │ │ │ ├── MSALNativeAuthResetPasswordRequestProvider.swift │ │ │ │ └── MSALNativeAuthResetPasswordStartRequestProviderParameters.swift │ │ │ ├── responses │ │ │ │ ├── MSALNativeAuthResendCodeRequestResponse.swift │ │ │ │ ├── jit │ │ │ │ │ ├── MSALNativeAuthJITChallengeResponse.swift │ │ │ │ │ ├── MSALNativeAuthJITContinueResponse.swift │ │ │ │ │ └── MSALNativeAuthJITIntrospectResponse.swift │ │ │ │ ├── reset_password │ │ │ │ │ ├── MSALNativeAuthResetPasswordChallengeResponse.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordContinueResponse.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionResponse.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionStatus.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordStartResponse.swift │ │ │ │ │ └── MSALNativeAuthResetPasswordSubmitResponse.swift │ │ │ │ ├── sign_in │ │ │ │ │ ├── MSALNativeAuthInternalAuthenticationMethod.swift │ │ │ │ │ ├── MSALNativeAuthSignInChallengeResponse.swift │ │ │ │ │ ├── MSALNativeAuthSignInInitiateResponse.swift │ │ │ │ │ └── MSALNativeAuthSignInIntrospectResponse.swift │ │ │ │ ├── sign_up │ │ │ │ │ ├── MSALNativeAuthSignUpChallengeResponse.swift │ │ │ │ │ ├── MSALNativeAuthSignUpContinueResponse.swift │ │ │ │ │ └── MSALNativeAuthSignUpStartResponse.swift │ │ │ │ ├── token │ │ │ │ │ └── MSALNativeAuthCIAMTokenResponse.swift │ │ │ │ └── validator │ │ │ │ │ ├── jit │ │ │ │ │ ├── MSALNativeAuthJITResponseValidator.swift │ │ │ │ │ └── validated_response │ │ │ │ │ │ ├── MSALNativeAuthJITChallengeValidatedResponse.swift │ │ │ │ │ │ ├── MSALNativeAuthJITContinueValidatedResponse.swift │ │ │ │ │ │ └── MSALNativeAuthJITIntrospectValidatedResponse.swift │ │ │ │ │ ├── reset_password │ │ │ │ │ ├── MSALNativeAuthResetPasswordResponseValidator.swift │ │ │ │ │ └── MSALNativeAuthResetPasswordValidatedResponses.swift │ │ │ │ │ ├── sign_in │ │ │ │ │ ├── MSALNativeAuthSignInResponseValidator.swift │ │ │ │ │ └── validated_response │ │ │ │ │ │ ├── MSALNativeAuthSignInChallengeValidatedResponse.swift │ │ │ │ │ │ ├── MSALNativeAuthSignInInitiateValidatedResponse.swift │ │ │ │ │ │ └── MSALNativeAuthSignInIntrospectValidatedResponse.swift │ │ │ │ │ ├── sign_up │ │ │ │ │ ├── MSALNativeAuthSignUpResponseValidator.swift │ │ │ │ │ └── MSALNativeAuthSignUpValidatedResponses.swift │ │ │ │ │ └── token │ │ │ │ │ ├── MSALNativeAuthTokenResponseValidator.swift │ │ │ │ │ └── validated_response │ │ │ │ │ └── MSALNativeAuthTokenValidatedResponse.swift │ │ │ ├── sign_in │ │ │ │ └── MSALNativeAuthSignInRequestProvider.swift │ │ │ ├── sign_up │ │ │ │ ├── MSALNativeAuthSignUpContinueRequestProviderParams.swift │ │ │ │ ├── MSALNativeAuthSignUpRequestProvider.swift │ │ │ │ └── MSALNativeAuthSignUpStartRequestProviderParameters.swift │ │ │ └── token │ │ │ │ └── MSALNativeAuthTokenRequestProvider.swift │ │ ├── public │ │ │ ├── MSALAuthMethod.swift │ │ │ ├── MSALNativeAuthCapabilities.h │ │ │ ├── MSALNativeAuthChallengeTypes.h │ │ │ ├── MSALNativeAuthChannelType.swift │ │ │ ├── MSALNativeAuthPublicClientApplication+Internal.swift │ │ │ ├── MSALNativeAuthPublicClientApplication.swift │ │ │ ├── configuration │ │ │ │ └── MSALNativeAuthPublicClientApplicationConfig.swift │ │ │ ├── parameters │ │ │ │ ├── MSALNativeAuthChallengeAuthMethodParameters.swift │ │ │ │ ├── MSALNativeAuthGetAccessTokenParameters.swift │ │ │ │ ├── MSALNativeAuthResetPasswordParameters.swift │ │ │ │ ├── MSALNativeAuthSignInAfterResetPasswordParameters .swift │ │ │ │ ├── MSALNativeAuthSignInAfterSignUpParameters.swift │ │ │ │ ├── MSALNativeAuthSignInParameters.swift │ │ │ │ └── MSALNativeAuthSignUpParameters.swift │ │ │ └── state_machine │ │ │ │ ├── MSALNativeAuthRequiredAttribute.swift │ │ │ │ ├── delegate │ │ │ │ ├── CredentialsDelegates.swift │ │ │ │ ├── JITDelegates.swift │ │ │ │ ├── MFADelegates.swift │ │ │ │ ├── ResetPasswordDelegates.swift │ │ │ │ ├── SignInAfterResetPasswordDelegate.swift │ │ │ │ ├── SignInAfterSignUpDelegate.swift │ │ │ │ ├── SignInDelegates.swift │ │ │ │ └── SignUpDelegates.swift │ │ │ │ ├── delegate_dispatcher │ │ │ │ ├── CredentialsDelegateDispatcher.swift │ │ │ │ ├── DelegateDispatcher.swift │ │ │ │ ├── JITDelegateDispatchers.swift │ │ │ │ ├── MFADelegateDispatchers.swift │ │ │ │ ├── ResetPasswordDelegateDispatchers.swift │ │ │ │ ├── SignInAfterResetPasswordDelegateDispatcher.swift │ │ │ │ ├── SignInAfterSignUpDelegateDispatcher.swift │ │ │ │ ├── SignInDelegateDispatchers.swift │ │ │ │ └── SignUpDelegateDispatchers.swift │ │ │ │ ├── error │ │ │ │ ├── AttributesRequiredError.swift │ │ │ │ ├── MFARequestChallengeError.swift │ │ │ │ ├── MFASubmitChallengeError.swift │ │ │ │ ├── MSALNativeAuthError.swift │ │ │ │ ├── MSALNativeAuthGenericError.swift │ │ │ │ ├── PasswordRequiredError.swift │ │ │ │ ├── RegisterStrongAuthChallengeError.swift │ │ │ │ ├── RegisterStrongAuthSubmitChallengeError.swift │ │ │ │ ├── ResendCodeError.swift │ │ │ │ ├── ResetPasswordStartError.swift │ │ │ │ ├── RetrieveAccessTokenError.swift │ │ │ │ ├── SignInAfterResetPasswordError.swift │ │ │ │ ├── SignInAfterSignUpError.swift │ │ │ │ ├── SignInStartError.swift │ │ │ │ ├── SignUpStartError.swift │ │ │ │ └── VerifyCodeError.swift │ │ │ │ ├── result │ │ │ │ ├── MSALNativeAuthRegisterStrongAuthVerificationRequiredResult.swift │ │ │ │ ├── MSALNativeAuthTokenResult.swift │ │ │ │ ├── MSALNativeAuthUserAccountResult+Internal.swift │ │ │ │ └── MSALNativeAuthUserAccountResult.swift │ │ │ │ └── state │ │ │ │ ├── JITStates+Internal.swift │ │ │ │ ├── JITStates.swift │ │ │ │ ├── MFAStates+Internal.swift │ │ │ │ ├── MFAStates.swift │ │ │ │ ├── MSALNativeAuthBaseState.swift │ │ │ │ ├── ResetPasswordStates+Internal.swift │ │ │ │ ├── ResetPasswordStates.swift │ │ │ │ ├── SignInAfterPreviousFlowBaseState+Internal.swift │ │ │ │ ├── SignInAfterPreviousFlowBaseState.swift │ │ │ │ ├── SignInAfterResetPasswordState.swift │ │ │ │ ├── SignInAfterSignUpState.swift │ │ │ │ ├── SignInStates+Internal.swift │ │ │ │ ├── SignInStates.swift │ │ │ │ ├── SignUpStates+Internal.swift │ │ │ │ └── SignUpStates.swift │ │ ├── telemetry │ │ │ ├── MSALNativeAuthCurrentRequestTelemetry.swift │ │ │ ├── MSALNativeAuthOperationTypes.swift │ │ │ ├── MSALNativeAuthServerTelemetry.swift │ │ │ ├── MSALNativeAuthTelemetryApiId.swift │ │ │ └── MSALNativeAuthTelemetryProvider.swift │ │ └── validation │ │ │ └── MSALNativeAuthAuthorityProvider.swift │ ├── public │ │ ├── MSAL.h │ │ ├── MSALAADAuthority.h │ │ ├── MSALADFSAuthority.h │ │ ├── MSALAccount.h │ │ ├── MSALAccountEnumerationParameters.h │ │ ├── MSALAccountId.h │ │ ├── MSALAuthenticationSchemeBearer.h │ │ ├── MSALAuthenticationSchemePop.h │ │ ├── MSALAuthenticationSchemeProtocol.h │ │ ├── MSALAuthority.h │ │ ├── MSALB2CAuthority.h │ │ ├── MSALCIAMAuthority.h │ │ ├── MSALClaimsRequest.h │ │ ├── MSALDefinitions.h │ │ ├── MSALDeviceInformation.h │ │ ├── MSALError.h │ │ ├── MSALHttpMethod.h │ │ ├── MSALIndividualClaimRequest.h │ │ ├── MSALIndividualClaimRequestAdditionalInfo.h │ │ ├── MSALInteractiveTokenParameters.h │ │ ├── MSALJsonDeserializable.h │ │ ├── MSALJsonSerializable.h │ │ ├── MSALParameters.h │ │ ├── MSALPublicClientApplication+SingleAccount.h │ │ ├── MSALPublicClientApplication.h │ │ ├── MSALPublicClientStatusNotifications.h │ │ ├── MSALRedirectUri.h │ │ ├── MSALResult.h │ │ ├── MSALSignoutParameters.h │ │ ├── MSALSilentTokenParameters.h │ │ ├── MSALTenantProfile.h │ │ ├── MSALTokenParameters.h │ │ ├── MSALWPJMetaData.h │ │ ├── MSALWebviewParameters.h │ │ ├── configuration │ │ │ ├── MSALGlobalConfig.h │ │ │ ├── MSALPublicClientApplicationConfig.h │ │ │ ├── global │ │ │ │ ├── MSALHTTPConfig.h │ │ │ │ ├── MSALLoggerConfig.h │ │ │ │ └── MSALTelemetryConfig.h │ │ │ └── publicClientApplication │ │ │ │ ├── MSALSliceConfig.h │ │ │ │ └── cache │ │ │ │ ├── MSALCacheConfig.h │ │ │ │ ├── MSALExternalAccountProviding.h │ │ │ │ ├── MSALSerializedADALCacheProvider.h │ │ │ │ └── MSALWipeCacheForAllAccountsConfig.h │ │ └── ios │ │ │ └── cache │ │ │ └── MSALLegacySharedAccountsProvider.h │ ├── telemetry │ │ ├── MSALTelemetryEventsObservingProxy.h │ │ └── MSALTelemetryEventsObservingProxy.m │ └── util │ │ ├── MSALRedirectUri+Internal.h │ │ ├── MSALRedirectUri.m │ │ ├── MSALRedirectUriVerifier.h │ │ └── MSALRedirectUriVerifier.m ├── test │ ├── NSString+MSALTestUtil.h │ ├── NSString+MSALTestUtil.m │ ├── XCTestCase+HelperMethods.h │ ├── XCTestCase+HelperMethods.m │ ├── app │ │ ├── MSALStressTestHelper.h │ │ ├── MSALStressTestHelper.m │ │ ├── MSALTestAppSettings.h │ │ ├── MSALTestAppSettings.m │ │ ├── ios │ │ │ ├── Launch Screen.storyboard │ │ │ ├── MSALCacheItemDetailViewController.h │ │ │ ├── MSALCacheItemDetailViewController.m │ │ │ ├── MSALTestAppAcquireLayoutBuilder.h │ │ │ ├── MSALTestAppAcquireLayoutBuilder.m │ │ │ ├── MSALTestAppAcquireTokenViewController.h │ │ │ ├── MSALTestAppAcquireTokenViewController.m │ │ │ ├── MSALTestAppAcquireTokenViewController.storyboard │ │ │ ├── MSALTestAppAsymmetricKey.h │ │ │ ├── MSALTestAppAsymmetricKey.m │ │ │ ├── MSALTestAppAuthorityTypeViewController.h │ │ │ ├── MSALTestAppAuthorityTypeViewController.m │ │ │ ├── MSALTestAppAuthorityViewController.h │ │ │ ├── MSALTestAppAuthorityViewController.m │ │ │ ├── MSALTestAppB2CAuthorityViewController.h │ │ │ ├── MSALTestAppB2CAuthorityViewController.m │ │ │ ├── MSALTestAppCacheViewController.h │ │ │ ├── MSALTestAppCacheViewController.m │ │ │ ├── MSALTestAppDelegate.h │ │ │ ├── MSALTestAppDelegate.m │ │ │ ├── MSALTestAppLogViewController.h │ │ │ ├── MSALTestAppLogViewController.m │ │ │ ├── MSALTestAppProfileViewController.h │ │ │ ├── MSALTestAppProfileViewController.m │ │ │ ├── MSALTestAppScopesViewController.h │ │ │ ├── MSALTestAppScopesViewController.m │ │ │ ├── MSALTestAppSettingViewController.h │ │ │ ├── MSALTestAppSettingViewController.m │ │ │ ├── MSALTestAppSettingsViewController.h │ │ │ ├── MSALTestAppSettingsViewController.m │ │ │ ├── MSALTestAppTelemetryViewController.h │ │ │ ├── MSALTestAppTelemetryViewController.m │ │ │ ├── MSALTestAppUserViewController.h │ │ │ ├── MSALTestAppUserViewController.m │ │ │ ├── main.m │ │ │ └── resources │ │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── adal_purple_icon-1024.png │ │ │ │ │ ├── adal_purple_icon-20@2x.png │ │ │ │ │ ├── adal_purple_icon-20@3x.png │ │ │ │ │ ├── adal_purple_icon-29.png │ │ │ │ │ ├── adal_purple_icon-29@2x.png │ │ │ │ │ ├── adal_purple_icon-29@3x.png │ │ │ │ │ ├── adal_purple_icon-40@2x.png │ │ │ │ │ ├── adal_purple_icon-40@3x.png │ │ │ │ │ ├── adal_purple_icon-60@2x.png │ │ │ │ │ ├── adal_purple_icon-60@3x.png │ │ │ │ │ ├── adal_purple_icon-83.5@2x.png │ │ │ │ │ └── adal_purple_icon.png │ │ │ │ └── Contents.json │ │ │ │ └── Info.plist │ │ ├── mac │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── MSALAcquireTokenViewController.h │ │ │ ├── MSALAcquireTokenViewController.m │ │ │ ├── MSALAppDelegate.h │ │ │ ├── MSALAppDelegate.m │ │ │ ├── MSALCacheViewController.h │ │ │ ├── MSALCacheViewController.m │ │ │ ├── MSALMacTestApp.entitlements │ │ │ ├── MSALScopesViewController.h │ │ │ ├── MSALScopesViewController.m │ │ │ └── main.m │ │ └── vision │ │ │ ├── ContentView.swift │ │ │ ├── MSALTestAppView.swift │ │ │ ├── MSALTestAppVisionViewController.swift │ │ │ ├── MSAL_Test_App-Bridging-Header.h │ │ │ ├── MSAL_Test_App.swift │ │ │ └── resources │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.solidimagestack │ │ │ │ ├── Back.solidimagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.solidimagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.solidimagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── MSAL Test App (visionOS).entitlements │ │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── automation │ │ ├── ios │ │ │ ├── Launch Screen.storyboard │ │ │ ├── MSALAutoAppDelegate.h │ │ │ ├── MSALAutoAppDelegate.m │ │ │ ├── MSALAutomation.entitlements │ │ │ ├── actions │ │ │ │ ├── MSALAutomationAcquireTokenAction.h │ │ │ │ ├── MSALAutomationAcquireTokenAction.m │ │ │ │ ├── MSALAutomationAcquireTokenSilentAction.h │ │ │ │ ├── MSALAutomationAcquireTokenSilentAction.m │ │ │ │ ├── MSALAutomationBaseAction.h │ │ │ │ ├── MSALAutomationBaseAction.m │ │ │ │ ├── MSALAutomationExpireATAction.h │ │ │ │ ├── MSALAutomationExpireATAction.m │ │ │ │ ├── MSALAutomationInvalidateRTAction.h │ │ │ │ ├── MSALAutomationInvalidateRTAction.m │ │ │ │ ├── MSALAutomationReadAccountsAction.h │ │ │ │ ├── MSALAutomationReadAccountsAction.m │ │ │ │ ├── MSALAutomationRemoveAccountAction.h │ │ │ │ └── MSALAutomationRemoveAccountAction.m │ │ │ ├── main.m │ │ │ ├── resources │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Info.plist │ │ │ └── util │ │ │ │ ├── MSALResult+Automation.h │ │ │ │ ├── MSALResult+Automation.m │ │ │ │ ├── MSALUser+Automation.h │ │ │ │ ├── MSALUser+Automation.m │ │ │ │ ├── MSIDTokenCacheItem+Automation.h │ │ │ │ └── MSIDTokenCacheItem+Automation.m │ │ └── tests │ │ │ ├── MSALADFSBaseUITest.h │ │ │ ├── MSALADFSBaseUITest.m │ │ │ ├── MSALBaseAADUITest.h │ │ │ ├── MSALBaseAADUITest.m │ │ │ ├── MSALBaseUITest.h │ │ │ ├── MSALBaseUITest.m │ │ │ ├── MSALBaseiOSUITest.h │ │ │ ├── MSALBaseiOSUITest.m │ │ │ ├── MSALTestsConfig.h │ │ │ ├── MSALTestsConfig.m │ │ │ ├── MSALUITests.swift │ │ │ ├── NSDictionary+MSALiOSUITests.h │ │ │ ├── NSDictionary+MSALiOSUITests.m │ │ │ ├── XCUIElement+MSALiOSUITests.h │ │ │ ├── XCUIElement+MSALiOSUITests.m │ │ │ ├── interactive │ │ │ ├── Info.plist │ │ │ ├── MSALAADBasicInteractiveTests.m │ │ │ ├── MSALAADMultiUserTests.m │ │ │ ├── MSALADFSv3FederatedTests.m │ │ │ ├── MSALADFSv4FederatedTests.m │ │ │ ├── MSALB2CInteractiveTests.m │ │ │ ├── MSALCIAMAuthorityTests.m │ │ │ ├── MSALCacheRemovalTests.m │ │ │ ├── MSALChinaCloudUITests.m │ │ │ ├── MSALGuestUserTests.m │ │ │ ├── MSALMSABasicInteractiveTests.m │ │ │ ├── MSALNationalCloudUITest.h │ │ │ ├── MSALNationalCloudUITest.m │ │ │ ├── MSALPingUITests.m │ │ │ ├── MSALShibUITests.m │ │ │ └── MSALUSGovUITests.m │ │ │ └── multiapp │ │ │ ├── MSALDotNetCacheCoexistenceTests.m │ │ │ ├── MSALMultiAppCacheCoexistenceTests.m │ │ │ ├── MSALNonUnifiedADALCoexistenceCacheTests.m │ │ │ └── MSALUnifiedADALCacheCoexistenceTests.m │ ├── integration │ │ └── native_auth │ │ │ ├── MockAPIHandlerTest.swift │ │ │ ├── common │ │ │ ├── MSALNativeAuthIntegrationBaseTests.swift │ │ │ ├── MockAPIHandler.swift │ │ │ └── Model.swift │ │ │ ├── end_to_end │ │ │ ├── AuthorityURLFormat.swift │ │ │ ├── ClientIdType.swift │ │ │ ├── MSALNativeAuthEndToEndBaseTestCase.swift │ │ │ ├── MSALNativeAuthEndToEndPasswordTestCase.swift │ │ │ ├── credentials │ │ │ │ ├── CredentialsDelegateSpies.swift │ │ │ │ └── MSALNativeAuthUserAccountEndToEndTests.swift │ │ │ ├── mfa │ │ │ │ ├── JITDelegateSpies.swift │ │ │ │ ├── MFADelegateSpies.swift │ │ │ │ ├── MSALNativeAuthSignInJITEndToEndTests.swift │ │ │ │ └── MSALNativeAuthSignInWithMFAEndToEndTests.swift │ │ │ ├── mock │ │ │ │ └── AttributesStub.swift │ │ │ ├── otp_code_retriever │ │ │ │ └── MSALNativeAuthEmailCodeRetriever.swift │ │ │ ├── reset_password │ │ │ │ ├── MSALNativeAuthResetPasswordEndToEndTests.swift │ │ │ │ └── ResetPasswordDelegateSpies.swift │ │ │ ├── sign_in │ │ │ │ ├── MSALNativeAuthSignInUserNameAndPasswordEndToEndTests.swift │ │ │ │ ├── MSALNativeAuthSignInUsernameEndToEndTests.swift │ │ │ │ └── SignInDelegateSpies.swift │ │ │ ├── sign_out │ │ │ │ └── MSALNativeAuthSignOutEndToEndTests.swift │ │ │ └── sign_up │ │ │ │ ├── MSALNativeAuthSignUpUsernameAndPasswordEndToEndTests.swift │ │ │ │ ├── MSALNativeAuthSignUpUsernameEndToEndTests.swift │ │ │ │ └── SignUpDelegateSpies.swift │ │ │ └── requests │ │ │ ├── jit │ │ │ ├── MSALNativeAuthJITChallengeIntegrationTests.swift │ │ │ ├── MSALNativeAuthJITContinueIntegrationTests.swift │ │ │ └── MSALNativeAuthJITIntrospectIntegrationTests.swift │ │ │ ├── reset_password │ │ │ ├── MSALNativeAuthResetPasswordChallengeIntegrationTests.swift │ │ │ ├── MSALNativeAuthResetPasswordContinueIntegrationTests.swift │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionIntegrationTests.swift │ │ │ ├── MSALNativeAuthResetPasswordStartIntegrationTests.swift │ │ │ └── MSALNativeAuthResetPasswordSubmitIntegrationTests.swift │ │ │ ├── sign_in │ │ │ ├── MSALNativeAuthSignInChallengeIntegrationTests.swift │ │ │ ├── MSALNativeAuthSignInInitiateIntegrationTests.swift │ │ │ └── MSALNativeAuthSignInIntrospectIntegrationTests.swift │ │ │ ├── sign_up │ │ │ ├── MSALNativeAuthSignUpChallengeIntegrationTests.swift │ │ │ ├── MSALNativeAuthSignUpContinueIntegrationTests.swift │ │ │ └── MSALNativeAuthSignUpStartIntegrationTests.swift │ │ │ └── token │ │ │ └── MSALNativeAuthTokenIntegrationTests.swift │ ├── testplan │ │ ├── MSAL Mac Native Auth E2E Tests.xctestplan │ │ ├── MSAL iOS Native Auth E2E Tests.xctestplan │ │ ├── NativeAuthEndToEndTestPlan Mac.xctestplan │ │ └── NativeAuthEndToEndTestPlan.xctestplan │ └── unit │ │ ├── MSALAADAuthorityTests.m │ │ ├── MSALAccountIdTests.m │ │ ├── MSALAccountTests.m │ │ ├── MSALAccountsProviderTests.m │ │ ├── MSALAcquireTokenTests.m │ │ ├── MSALAuthSchemeTests.m │ │ ├── MSALB2CPolicyTests.m │ │ ├── MSALClaimsRequestTests.m │ │ ├── MSALDeviceInfoProviderTests.m │ │ ├── MSALErrorConverterTests.m │ │ ├── MSALExternalAccountHandlerTests.m │ │ ├── MSALOauth2FactoryProducerTests.m │ │ ├── MSALPublicClientApplicationAccountUpdateTests.m │ │ ├── MSALPublicClientApplicationConfigTests.m │ │ ├── MSALPublicClientApplicationTests.m │ │ ├── MSALResultTests.m │ │ ├── MSALTelemetryAggregatedTests.m │ │ ├── MSALTelemetryTests.m │ │ ├── ios │ │ ├── external-cache │ │ │ ├── MSALLegacySharedADALAccountTests.m │ │ │ ├── MSALLegacySharedAccountFactoryTests.m │ │ │ ├── MSALLegacySharedAccountTestUtil.h │ │ │ ├── MSALLegacySharedAccountTestUtil.m │ │ │ ├── MSALLegacySharedAccountTests.m │ │ │ ├── MSALLegacySharedAccountsProviderTests.m │ │ │ ├── MSALLegacySharedMSAAccountTests.m │ │ │ └── NSStringAccountIdentifiersTest.m │ │ └── unit-test-host │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ ├── mac │ │ └── unit-test-host │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ ├── mocks │ │ ├── MSALMockExternalAccountHandler.h │ │ └── MSALMockExternalAccountHandler.m │ │ ├── native_auth │ │ ├── MSALNativeAuthTestCase.swift │ │ ├── cache │ │ │ └── MSALNativeAuthCacheAccessorTest.swift │ │ ├── controllers │ │ │ ├── MSALNativeAuthBaseControllerTests.swift │ │ │ ├── MSALNativeAuthCredentialsControllerTests.swift │ │ │ ├── MSALNativeAuthJITControllerTests.swift │ │ │ ├── MSALNativeAuthMFAControllerTests.swift │ │ │ ├── MSALNativeAuthResetPasswordControllerTests.swift │ │ │ ├── MSALNativeAuthSignInControllerTests.swift │ │ │ ├── MSALNativeAuthSignUpControllerTests.swift │ │ │ └── factories │ │ │ │ └── MSALNativeAuthResultFactoryTests.swift │ │ ├── input_validator │ │ │ └── MSALNativeAuthInputValidatorTest.swift │ │ ├── logger │ │ │ ├── MSALLogMaskTests.m │ │ │ └── MSALNativeLoggingTests.swift │ │ ├── mock │ │ │ ├── MSALNativeAuthCacheMocks.swift │ │ │ ├── MSALNativeAuthConfigStubs.swift │ │ │ ├── MSALNativeAuthCredentialsControllerMock.swift │ │ │ ├── MSALNativeAuthFactoriesMocks.swift │ │ │ ├── MSALNativeAuthHTTPRequestMock.swift │ │ │ ├── MSALNativeAuthJITControllerMock.swift │ │ │ ├── MSALNativeAuthNetworkMocks.swift │ │ │ ├── MSALNativeAuthResetPasswordControllerMock.swift │ │ │ ├── MSALNativeAuthSignInControllerMock.swift │ │ │ ├── MSALNativeAuthSignUpControllerMock.swift │ │ │ ├── MSALNativeAuthSignUpControllerSpy.swift │ │ │ ├── MSALNativeAuthSignUpRequestProviderMock.swift │ │ │ ├── MSALNativeAuthSignUpResponseValidatorMock.swift │ │ │ ├── MSALNativeAuthSilentTokenProviderFactoryConfigTester.swift │ │ │ ├── MSALNativeAuthSilentTokenProviderFactoryMock.swift │ │ │ ├── MSALNativeAuthSilentTokenProviderMock.swift │ │ │ ├── MSALNativeAuthUserAccountResultStub.swift │ │ │ ├── ResetPasswordTestValidatorHelpers.swift │ │ │ ├── SignInTestsValidatorHelpers.swift │ │ │ ├── SignUpTestsValidatorHelpers.swift │ │ │ ├── delegate │ │ │ │ ├── CredentialsDelegateSpies.swift │ │ │ │ ├── JITDelegatesSpies.swift │ │ │ │ ├── MFADelegatesSpies.swift │ │ │ │ ├── ResetPasswordDelegateSpies.swift │ │ │ │ ├── SignInDelegatesSpies.swift │ │ │ │ └── SignUpDelegateSpies.swift │ │ │ └── reset_password │ │ │ │ ├── MSALNativeAuthResetPasswordControllerSpy.swift │ │ │ │ ├── MSALNativeAuthResetPasswordRequestProviderMock.swift │ │ │ │ └── MSALNativeAuthResetPasswordResponseValidatorMock.swift │ │ ├── network │ │ │ ├── MSALNativeAuthCustomErrorSerializerTests.swift │ │ │ ├── MSALNativeAuthEndpointTests.swift │ │ │ ├── MSALNativeAuthInternalConfigurationTest.swift │ │ │ ├── MSALNativeAuthRequestConfiguratorTests.swift │ │ │ ├── MSALNativeAuthRequestErrorHandlerTests.swift │ │ │ ├── MSALNativeAuthRequestableTests.swift │ │ │ ├── MSALNativeAuthResponseCorrelatableTests.swift │ │ │ ├── MSALNativeAuthResponseSerializerTests.swift │ │ │ ├── MSALNativeAuthSignUpRequestProviderTests.swift │ │ │ ├── MSALNativeAuthUnknownCaseProtocolTests.swift │ │ │ ├── MSALNativeAuthUrlRequestSerializerTests.swift │ │ │ ├── errors │ │ │ │ ├── MSALNativeAuthESTSApiErrorDescriptionsTests.swift │ │ │ │ ├── MSALNativeAuthSubErrorCodeTests.swift │ │ │ │ ├── reset_password │ │ │ │ │ ├── MSALNativeAuthResetPasswordChallengeOauth2ErrorCodeTests.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordChallengeResponseErrorTests.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordContinueOauth2ErrorCodeTests.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordContinueResponseErrorTests.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionOauth2ErrorCodeTests.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionResponseErrorTests.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordStartOauth2ErrorCodeTests.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordSubmitOauth2ErrorCodeTests.swift │ │ │ │ │ └── MSALNativeAuthResetPasswordSubmitResponseErrorTests.swift │ │ │ │ └── sign_up │ │ │ │ │ ├── MSALNativeAuthErrorRequiredAttributesTests.swift │ │ │ │ │ ├── MSALNativeAuthSignUpChallengeOauth2ErrorCodeTests.swift │ │ │ │ │ ├── MSALNativeAuthSignUpChallengeResponseErrorTests.swift │ │ │ │ │ ├── MSALNativeAuthSignUpContinueOauth2ErrorCodeTests.swift │ │ │ │ │ ├── MSALNativeAuthSignUpContinueResponseErrorTests.swift │ │ │ │ │ ├── MSALNativeAuthSignUpStartOauth2ErrorCodeTests.swift │ │ │ │ │ └── MSALNativeAuthSignUpStartResponseErrorTests.swift │ │ │ ├── parameters │ │ │ │ ├── MSALNativeAuthRequestContextTests.swift │ │ │ │ ├── reset_password │ │ │ │ │ ├── MSALNativeAuthResetPasswordChallengeRequestParametersTest.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordContinueRequestParametersTest.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordPollCompletionRequestParametersTest.swift │ │ │ │ │ ├── MSALNativeAuthResetPasswordStartRequestParametersTest.swift │ │ │ │ │ └── MSALNativeAuthResetPasswordSubmitRequestParametersTest.swift │ │ │ │ ├── sign_in │ │ │ │ │ ├── MSALNativeAuthSignInChallengeRequestParametersTest.swift │ │ │ │ │ └── MSALNativeAuthSignInInitiateRequestParametersTest.swift │ │ │ │ ├── sign_up │ │ │ │ │ ├── MSALNativeAuthSignUpChallengeRequestParametersTest.swift │ │ │ │ │ ├── MSALNativeAuthSignUpContinueRequestParametersTest.swift │ │ │ │ │ └── MSALNativeAuthSignUpStartRequestParametersTest.swift │ │ │ │ └── token │ │ │ │ │ └── MSALNativeAuthTokenRequestParametersTest.swift │ │ │ ├── requests │ │ │ │ └── sign_in │ │ │ │ │ ├── MSALNativeAuthSignInChallengeRequestTests.swift │ │ │ │ │ └── MSALNativeAuthSignInTokenRequestTests.swift │ │ │ └── responses │ │ │ │ ├── token │ │ │ │ └── MSALNativeAuthCIAMTokenResponseTests.swift │ │ │ │ └── validator │ │ │ │ ├── MSALNativeAuthJITResponseValidatorTests.swift │ │ │ │ ├── MSALNativeAuthResetPasswordResponseValidatorTests.swift │ │ │ │ ├── MSALNativeAuthResetPasswordStartValidatedErrorTypeTests.swift │ │ │ │ ├── MSALNativeAuthSignInInitiateValidatedErrorTypeTests.swift │ │ │ │ ├── MSALNativeAuthSignInResponseValidatorTests.swift │ │ │ │ ├── MSALNativeAuthSignUpResponseValidatorTests.swift │ │ │ │ ├── MSALNativeAuthTokenResponseValidatorTests.swift │ │ │ │ └── MSALNativeAuthTokenValidatedErrorTypeTests.swift │ │ ├── public │ │ │ ├── MSALNativeAuthPublicClientApplicationConfigObjCTest.m │ │ │ ├── MSALNativeAuthPublicClientApplicationConfigTest.swift │ │ │ ├── MSALNativeAuthPublicClientApplicationTest.swift │ │ │ ├── MSALNativeAuthUserAccountResultTests.swift │ │ │ ├── delegate │ │ │ │ ├── DispatchAccessTokenRetrieveCompletedTests.swift │ │ │ │ ├── SignInAfterSignUpDelegateDispatcherTests.swift │ │ │ │ ├── jit │ │ │ │ │ ├── JITRequestChallengeDelegateDispatcherTests.swift │ │ │ │ │ └── JITSubmitChallengeDelegateDispatcherTests.swift │ │ │ │ ├── mfa │ │ │ │ │ ├── MFASendChallengeDelegateDispatcherTests.swift │ │ │ │ │ └── MFASubmitChallengeDelegateDispatcherTests.swift │ │ │ │ ├── reset_password │ │ │ │ │ ├── ResetPasswordRequiredDelegateDispatcherTests.swift │ │ │ │ │ ├── ResetPasswordResendCodeDelegateDispatcherTests.swift │ │ │ │ │ ├── ResetPasswordStartDelegateDispatcherTests.swift │ │ │ │ │ ├── ResetPasswordVerifyCodeDelegateDispatcherTests.swift │ │ │ │ │ └── SignInAfterResetPasswordDelegateDispatcherTests.swift │ │ │ │ ├── sign_in │ │ │ │ │ ├── SignInAfterSignUpDelegateDispatcherTests.swift │ │ │ │ │ ├── SignInPasswordRequiredDelegateDispatcherTests.swift │ │ │ │ │ ├── SignInPasswordStartDelegateDispatcherTests.swift │ │ │ │ │ ├── SignInResendCodeDelegateDispatcherTests.swift │ │ │ │ │ ├── SignInStartDelegateDispatcherTests.swift │ │ │ │ │ └── SignInVerifyCodeDelegateDispatcherTests.swift │ │ │ │ └── sign_up │ │ │ │ │ ├── SignUpAttributesRequiredDelegateDispatcherTests.swift │ │ │ │ │ ├── SignUpPasswordRequiredDelegateDispatcherTests.swift │ │ │ │ │ ├── SignUpPasswordStartDelegateDispatcherTests.swift │ │ │ │ │ ├── SignUpResendCodeDelegateDispatcherTests.swift │ │ │ │ │ ├── SignUpStartDelegateDispatcherTests.swift │ │ │ │ │ └── SignUpVerifyCodeDelegateDispatcherTests.swift │ │ │ ├── error │ │ │ │ ├── AttributesRequiredErrorTests.swift │ │ │ │ ├── MFARequestChallengeErrorTests.swift │ │ │ │ ├── MFASubmitChallengeErrorTests.swift │ │ │ │ ├── PasswordRequiredErrorTests.swift │ │ │ │ ├── ResendCodeErrorTests.swift │ │ │ │ ├── ResetPasswordStartErrorTests.swift │ │ │ │ ├── RetrieveAccessTokenErrorTests.swift │ │ │ │ ├── SignInAfterResetPasswordErrorTests.swift │ │ │ │ ├── SignInAfterSignUpErrorTests.swift │ │ │ │ ├── SignInStartErrorTests.swift │ │ │ │ ├── SignUpStartErrorTests.swift │ │ │ │ └── VerifyCodeErrorTests.swift │ │ │ └── state_machine │ │ │ │ ├── jit │ │ │ │ ├── RegisterStrongAuthStateTests.swift │ │ │ │ └── RegisterStrongAuthVerificationRequiredStateTests.swift │ │ │ │ ├── mfa │ │ │ │ ├── AwaitingMFAStateTests.swift │ │ │ │ └── MFARequiredStateTests.swift │ │ │ │ ├── reset_password │ │ │ │ ├── ResetPasswordCodeSentStateTests.swift │ │ │ │ └── ResetPasswordRequiredStateTests.swift │ │ │ │ ├── sign_in │ │ │ │ ├── SignInAfterResetPasswordTests.swift │ │ │ │ ├── SignInAfterSignUpStateTests.swift │ │ │ │ ├── SignInCodeRequiredStateTests.swift │ │ │ │ └── SignInPasswordRequiredStateTests.swift │ │ │ │ └── sign_up │ │ │ │ ├── SignUpAttributesRequiredStateTests.swift │ │ │ │ ├── SignUpCodeSentStateTests.swift │ │ │ │ └── SignUpPasswordRequiredStateTests.swift │ │ ├── telemetry │ │ │ ├── MSALNativeAuthCurrentRequestTelemetryTests.swift │ │ │ └── MSALNativeAuthTelemetryProviderTests.swift │ │ └── utils │ │ │ └── MSALNativeAuthTelemetryTestDispatcher.swift │ │ ├── resources │ │ ├── OpenIdConfiguration.json │ │ ├── OpenIdConfigurationMissingFields.json │ │ ├── ios │ │ │ └── Info.plist │ │ └── mac │ │ │ └── Info.plist │ │ └── utils │ │ ├── MSALDevicePopManagerUtil.h │ │ ├── MSALDevicePopManagerUtil.m │ │ ├── MSALTestCacheTokenResponse.h │ │ ├── MSALTestCacheTokenResponse.m │ │ ├── MSALTestCase.h │ │ ├── MSALTestCase.m │ │ ├── MSALTestConstants.h │ │ ├── MSALTestURLSessionDataTask.h │ │ ├── MSALTestURLSessionDataTask.m │ │ ├── MSIDTestURLResponse+MSAL.h │ │ ├── MSIDTestURLResponse+MSAL.m │ │ ├── MSIDTestURLSession+MSAL.h │ │ ├── MSIDTestURLSession+MSAL.m │ │ └── ios │ │ ├── MSALFakeViewController.h │ │ ├── MSALFakeViewController.m │ │ ├── SFSafariViewController+TestOverrides.h │ │ └── SFSafariViewController+TestOverrides.m ├── unit-test-host.entitlements └── xcconfig │ ├── msal__automation_app__ios.xcconfig │ ├── msal__common.xcconfig │ ├── msal__common__framework__ios.xcconfig │ ├── msal__common__framework__mac.xcconfig │ ├── msal__common__ios.xcconfig │ ├── msal__common__mac.xcconfig │ ├── msal__debug.xcconfig │ ├── msal__framework__ios.xcconfig │ ├── msal__framework__mac.xcconfig │ ├── msal__release.xcconfig │ ├── msal__static__lib__ios.xcconfig │ ├── msal__static__lib__mac.xcconfig │ ├── msal__test_app__ios.xcconfig │ ├── msal__test_app__mac.xcconfig │ ├── msal__test_app__vision.xcconfig │ ├── msal__ui_test__ios.xcconfig │ ├── msal__unit_test__ios.xcconfig │ ├── msal__unit_test__mac.xcconfig │ └── msal__unit_test_host__ios.xcconfig ├── PULL_REQUEST_TEMPLATE.md ├── Package.swift ├── README.md ├── ReleaseArchive.sh ├── Samples └── ios │ ├── SampleApp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── SampleApp │ ├── SampleAppiOS.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SampleAppiOS.xcscheme │ ├── SampleAppiOS │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── sign-in-with-microsoft-light.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sign-in-with-microsoft-light.png │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── SampleAppDelegate.h │ │ ├── SampleAppDelegate.m │ │ ├── SampleAppErrors.h │ │ ├── SampleAppErrors.m │ │ ├── SampleAppiOS.entitlements │ │ ├── SampleBaseViewController.h │ │ ├── SampleBaseViewController.m │ │ ├── SampleCalendarUtil.h │ │ ├── SampleCalendarUtil.m │ │ ├── SampleGraphRequest.h │ │ ├── SampleGraphRequest.m │ │ ├── SampleLoginViewController.h │ │ ├── SampleLoginViewController.m │ │ ├── SampleMSALUtil.h │ │ ├── SampleMSALUtil.m │ │ ├── SampleMainView.xib │ │ ├── SampleMainViewController.h │ │ ├── SampleMainViewController.m │ │ ├── SamplePhotoUtil.h │ │ ├── SamplePhotoUtil.m │ │ ├── main.m │ │ └── no_photo.png │ └── SampleLoginView.xib │ └── SampleAppiOS-Swift │ ├── SampleAppiOS-Swift.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── SampleAppiOS-Swift.xcscheme │ └── SampleAppiOS-Swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── no_photo.imageset │ │ ├── Contents.json │ │ └── no_photo.png │ └── sign-in-with-microsoft-light.imageset │ │ ├── Contents.json │ │ └── sign-in-with-microsoft-light.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SampleAppErrors.swift │ ├── SampleAppiOS-Swift.entitlements │ ├── SampleCalendarEvent.swift │ ├── SampleCalendarUtil.swift │ ├── SampleGraphRequest.swift │ ├── SampleGraphScopes.swift │ ├── SampleLoginViewController.swift │ ├── SampleMSALAuthentication.swift │ ├── SampleMainViewController.swift │ └── SamplePhotoUtil.swift ├── TestRubyFile.rb ├── azure_pipelines ├── automation.yml ├── broker_submodule_check.yml ├── changelogs.yml ├── msal-release-ado-trigger.yml ├── pr-validation.yml ├── scripts │ └── get_automation_conf_file.py └── templates │ └── tests-with-conf-file.yml ├── cgmanifest.json ├── device_guids.py ├── docs ├── MSAL_2x_Migration_Guide.md └── access_token-pop.md └── spm-integration-test.sh /.clinerules/01-Workforce-tenant-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.clinerules/01-Workforce-tenant-configuration.md -------------------------------------------------------------------------------- /.clinerules/02-External-tenant-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.clinerules/02-External-tenant-configuration.md -------------------------------------------------------------------------------- /.clinerules/03-MSAL-API-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.clinerules/03-MSAL-API-usage.md -------------------------------------------------------------------------------- /.clinerules/04-Code-style-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.clinerules/04-Code-style-guidelines.md -------------------------------------------------------------------------------- /.clinerules/05-feature-gating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.clinerules/05-feature-gating.md -------------------------------------------------------------------------------- /.clinerules/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.clinerules/AGENTS.md -------------------------------------------------------------------------------- /.cursor/rules/ruler_cursor_instructions.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.cursor/rules/ruler_cursor_instructions.mdc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/.gitmodules -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Images/keychain_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Images/keychain_example.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/LICENSE -------------------------------------------------------------------------------- /MSAL.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL.podspec -------------------------------------------------------------------------------- /MSAL.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MSAL.xcworkspace/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL.xcworkspace/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /MSAL.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MSAL.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MSAL/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/.swiftlint.yml -------------------------------------------------------------------------------- /MSAL/MSAL Test App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL Test App.entitlements -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (Mac Framework).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (Mac Framework).xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (Mac Static Library).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (Mac Static Library).xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (iOS Framework).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (iOS Framework).xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (iOS Static Library).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL (iOS Static Library).xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Mac Native Auth E2E Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Mac Native Auth E2E Tests.xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Test App (Mac).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Test App (Mac).xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Test App (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Test App (iOS).xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Test Automation (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL Test Automation (iOS).xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL iOS Native Auth E2E Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/MSAL iOS Native Auth E2E Tests.xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/unit-test-host-mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/unit-test-host-mac.xcscheme -------------------------------------------------------------------------------- /MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/unit-test-host.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/MSAL.xcodeproj/xcshareddata/xcschemes/unit-test-host.xcscheme -------------------------------------------------------------------------------- /MSAL/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /MSAL/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/module.modulemap -------------------------------------------------------------------------------- /MSAL/resources/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/resources/ios/Info.plist -------------------------------------------------------------------------------- /MSAL/resources/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/resources/mac/Info.plist -------------------------------------------------------------------------------- /MSAL/src/MSAL.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSAL.pch -------------------------------------------------------------------------------- /MSAL/src/MSALAccount+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAccount+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAccount.m -------------------------------------------------------------------------------- /MSAL/src/MSALAccountEnumerationParameters+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAccountEnumerationParameters+Private.h -------------------------------------------------------------------------------- /MSAL/src/MSALAccountEnumerationParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAccountEnumerationParameters.m -------------------------------------------------------------------------------- /MSAL/src/MSALAccountId+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAccountId+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALAccountId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAccountId.m -------------------------------------------------------------------------------- /MSAL/src/MSALAuthScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAuthScheme.h -------------------------------------------------------------------------------- /MSAL/src/MSALAuthScheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAuthScheme.m -------------------------------------------------------------------------------- /MSAL/src/MSALAuthenticationSchemeBearer+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAuthenticationSchemeBearer+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALAuthenticationSchemeBearer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAuthenticationSchemeBearer.m -------------------------------------------------------------------------------- /MSAL/src/MSALAuthenticationSchemePop+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAuthenticationSchemePop+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALAuthenticationSchemePop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAuthenticationSchemePop.m -------------------------------------------------------------------------------- /MSAL/src/MSALAuthenticationSchemeProtocolInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALAuthenticationSchemeProtocolInternal.h -------------------------------------------------------------------------------- /MSAL/src/MSALClaimsRequest+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALClaimsRequest+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALClaimsRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALClaimsRequest.m -------------------------------------------------------------------------------- /MSAL/src/MSALDeviceInformation+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALDeviceInformation+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALDeviceInformation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALDeviceInformation.m -------------------------------------------------------------------------------- /MSAL/src/MSALError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALError.m -------------------------------------------------------------------------------- /MSAL/src/MSALErrorConverter+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALErrorConverter+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALErrorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALErrorConverter.h -------------------------------------------------------------------------------- /MSAL/src/MSALErrorConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALErrorConverter.m -------------------------------------------------------------------------------- /MSAL/src/MSALFramework.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALFramework.m -------------------------------------------------------------------------------- /MSAL/src/MSALHttpMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALHttpMethod.m -------------------------------------------------------------------------------- /MSAL/src/MSALIndividualClaimRequest+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALIndividualClaimRequest+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALIndividualClaimRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALIndividualClaimRequest.m -------------------------------------------------------------------------------- /MSAL/src/MSALIndividualClaimRequestAdditionalInfo+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALIndividualClaimRequestAdditionalInfo+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALIndividualClaimRequestAdditionalInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALIndividualClaimRequestAdditionalInfo.m -------------------------------------------------------------------------------- /MSAL/src/MSALInteractiveTokenParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALInteractiveTokenParameters.m -------------------------------------------------------------------------------- /MSAL/src/MSALParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALParameters.m -------------------------------------------------------------------------------- /MSAL/src/MSALPromptType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALPromptType.m -------------------------------------------------------------------------------- /MSAL/src/MSALPromptType_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALPromptType_Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALPublicClientApplication+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALPublicClientApplication+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALPublicClientApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALPublicClientApplication.m -------------------------------------------------------------------------------- /MSAL/src/MSALPublicClientStatusNotifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALPublicClientStatusNotifications.m -------------------------------------------------------------------------------- /MSAL/src/MSALResult+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALResult+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALResult.m -------------------------------------------------------------------------------- /MSAL/src/MSALSignoutParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALSignoutParameters.m -------------------------------------------------------------------------------- /MSAL/src/MSALSilentTokenParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALSilentTokenParameters.m -------------------------------------------------------------------------------- /MSAL/src/MSALTelemetryApiId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALTelemetryApiId.h -------------------------------------------------------------------------------- /MSAL/src/MSALTenantProfile+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALTenantProfile+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALTenantProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALTenantProfile.m -------------------------------------------------------------------------------- /MSAL/src/MSALTokenParameters+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALTokenParameters+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALTokenParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALTokenParameters.m -------------------------------------------------------------------------------- /MSAL/src/MSALWPJMetaData+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALWPJMetaData+Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSALWPJMetaData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALWPJMetaData.m -------------------------------------------------------------------------------- /MSAL/src/MSALWebviewType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALWebviewType.m -------------------------------------------------------------------------------- /MSAL/src/MSALWebviewType_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSALWebviewType_Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSAL_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSAL_Internal.h -------------------------------------------------------------------------------- /MSAL/src/MSIDInteractiveRequestParameters+MSALRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSIDInteractiveRequestParameters+MSALRequest.h -------------------------------------------------------------------------------- /MSAL/src/MSIDInteractiveRequestParameters+MSALRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSIDInteractiveRequestParameters+MSALRequest.m -------------------------------------------------------------------------------- /MSAL/src/MSIDVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/MSIDVersion.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALCacheConfig+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALCacheConfig+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALCacheConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALExtraQueryParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALExtraQueryParameters.h -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALExtraQueryParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALExtraQueryParameters.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALGlobalConfig+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALGlobalConfig+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALGlobalConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALGlobalConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALHTTPConfig+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALHTTPConfig+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALHTTPConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALHTTPConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALLoggerConfig+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALLoggerConfig+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALLoggerConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALLoggerConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALPublicClientApplicationConfig+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALPublicClientApplicationConfig+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALPublicClientApplicationConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALPublicClientApplicationConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALSliceConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALSliceConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALTelemetryConfig+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALTelemetryConfig+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALTelemetryConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALTelemetryConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALWebviewParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALWebviewParameters.m -------------------------------------------------------------------------------- /MSAL/src/configuration/MSALWipeCacheForAllAccountsConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/MSALWipeCacheForAllAccountsConfig.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/MSALExternalAccountHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/MSALExternalAccountHandler.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/MSALExternalAccountHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/MSALExternalAccountHandler.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/MSALSerializedADALCacheProvider+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/MSALSerializedADALCacheProvider+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/MSALSerializedADALCacheProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/MSALSerializedADALCacheProvider.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedADALAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedADALAccount.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedADALAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedADALAccount.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedAccount.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedAccount.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedAccountFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedAccountFactory.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedAccountFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedAccountFactory.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedAccountsProvider+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedAccountsProvider+Internal.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedAccountsProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedAccountsProvider.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedMSAAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedMSAAccount.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/MSALLegacySharedMSAAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/MSALLegacySharedMSAAccount.m -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/NSString+MSALAccountIdenfiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/NSString+MSALAccountIdenfiers.h -------------------------------------------------------------------------------- /MSAL/src/configuration/external/ios/NSString+MSALAccountIdenfiers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/configuration/external/ios/NSString+MSALAccountIdenfiers.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALAADAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALAADAuthority.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALADFSAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALADFSAuthority.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALAccountsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALAccountsProvider.h -------------------------------------------------------------------------------- /MSAL/src/instance/MSALAccountsProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALAccountsProvider.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALAuthority.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALAuthority_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALAuthority_Internal.h -------------------------------------------------------------------------------- /MSAL/src/instance/MSALB2CAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALB2CAuthority.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALB2CAuthority_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALB2CAuthority_Internal.h -------------------------------------------------------------------------------- /MSAL/src/instance/MSALCIAMAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALCIAMAuthority.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALDeviceInfoProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALDeviceInfoProvider.h -------------------------------------------------------------------------------- /MSAL/src/instance/MSALDeviceInfoProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALDeviceInfoProvider.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALOauth2Authority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALOauth2Authority.h -------------------------------------------------------------------------------- /MSAL/src/instance/MSALOauth2Authority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALOauth2Authority.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALOauth2ProviderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALOauth2ProviderFactory.h -------------------------------------------------------------------------------- /MSAL/src/instance/MSALOauth2ProviderFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALOauth2ProviderFactory.m -------------------------------------------------------------------------------- /MSAL/src/instance/MSALSSOExtensionRequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALSSOExtensionRequestHandler.h -------------------------------------------------------------------------------- /MSAL/src/instance/MSALSSOExtensionRequestHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/MSALSSOExtensionRequestHandler.m -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/MSALOauth2Provider+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/MSALOauth2Provider+Internal.h -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/MSALOauth2Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/MSALOauth2Provider.h -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/MSALOauth2Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/MSALOauth2Provider.m -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/aad/MSALAADOauth2Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/aad/MSALAADOauth2Provider.h -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/aad/MSALAADOauth2Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/aad/MSALAADOauth2Provider.m -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/adfs/MSALADFSOauth2Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/adfs/MSALADFSOauth2Provider.h -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/adfs/MSALADFSOauth2Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/adfs/MSALADFSOauth2Provider.m -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/b2c/MSALB2COauth2Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/b2c/MSALB2COauth2Provider.h -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/b2c/MSALB2COauth2Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/b2c/MSALB2COauth2Provider.m -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/ciam/MSALCIAMOauth2Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/ciam/MSALCIAMOauth2Provider.h -------------------------------------------------------------------------------- /MSAL/src/instance/oauth2/ciam/MSALCIAMOauth2Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/instance/oauth2/ciam/MSALCIAMOauth2Provider.m -------------------------------------------------------------------------------- /MSAL/src/native_auth/MSALNativeAuthInternalError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/MSALNativeAuthInternalError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/MSALNativeAuthLogMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/MSALNativeAuthLogMessage.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/cache/MSALNativeAuthCacheAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/cache/MSALNativeAuthCacheAccessor.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/cache/MSALNativeAuthCacheInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/cache/MSALNativeAuthCacheInterface.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/configuration/MSALNativeAuthInternalConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/configuration/MSALNativeAuthInternalConfiguration.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/MSALNativeAuthBaseController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/MSALNativeAuthBaseController.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/MSALNativeAuthControllerTelemetryWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/MSALNativeAuthControllerTelemetryWrapper.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/MSALNativeAuthTokenController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/MSALNativeAuthTokenController.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/factories/MSALNativeAuthCacheAccessorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/factories/MSALNativeAuthCacheAccessorFactory.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/factories/MSALNativeAuthControllerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/factories/MSALNativeAuthControllerFactory.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/factories/MSALNativeAuthResultFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/factories/MSALNativeAuthResultFactory.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/jit/MSALNativeAuthJITController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/jit/MSALNativeAuthJITController.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/jit/MSALNativeAuthJITControlling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/jit/MSALNativeAuthJITControlling.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/responses/CodeRequiredGenericResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/responses/CodeRequiredGenericResult.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/responses/JITResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/responses/JITResults.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/responses/MFAResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/responses/MFAResults.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/responses/ResetPasswordResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/responses/ResetPasswordResults.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/responses/SignInResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/responses/SignInResults.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/responses/SignUpResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/responses/SignUpResults.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/sign_in/MSALNativeAuthMFAControlling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/sign_in/MSALNativeAuthMFAControlling.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/sign_in/MSALNativeAuthSignInController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/sign_in/MSALNativeAuthSignInController.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/sign_in/MSALNativeAuthSignInControlling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/sign_in/MSALNativeAuthSignInControlling.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/sign_up/MSALNativeAuthSignUpController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/sign_up/MSALNativeAuthSignUpController.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/controllers/sign_up/MSALNativeAuthSignUpControlling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/controllers/sign_up/MSALNativeAuthSignUpControlling.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/extension/Array+joinScopes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/extension/Array+joinScopes.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/input_validator/MSALNativeAuthInputValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/input_validator/MSALNativeAuthInputValidator.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/logger/MSALLogMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/logger/MSALLogMask.h -------------------------------------------------------------------------------- /MSAL/src/native_auth/logger/MSALLogMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/logger/MSALLogMask.m -------------------------------------------------------------------------------- /MSAL/src/native_auth/logger/MSALNativeAuthLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/logger/MSALNativeAuthLogger.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/logger/MSALNativeAuthLogging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/logger/MSALNativeAuthLogging.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthBaseSuccessResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthBaseSuccessResponse.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthCustomErrorSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthCustomErrorSerializer.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthEndpoint.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthGrantType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthGrantType.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthInternalCapability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthInternalCapability.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthInternalChallengeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthInternalChallengeType.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthRequestConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthRequestConfigurator.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthRequestParametersKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthRequestParametersKey.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthResponseCorrelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthResponseCorrelatable.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthResponseErrorHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthResponseErrorHandler.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthResponseSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthResponseSerializer.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthUnknownCaseProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthUnknownCaseProtocol.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/MSALNativeAuthUrlRequestSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/MSALNativeAuthUrlRequestSerializer.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/MSALNativeAuthESTSApiErrorCodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/MSALNativeAuthESTSApiErrorCodes.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/MSALNativeAuthESTSApiErrorDescriptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/MSALNativeAuthESTSApiErrorDescriptions.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/MSALNativeAuthErrorMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/MSALNativeAuthErrorMessage.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/MSALNativeAuthInnerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/MSALNativeAuthInnerError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/MSALNativeAuthResponseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/MSALNativeAuthResponseError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/MSALNativeAuthSubErrorCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/MSALNativeAuthSubErrorCode.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/jit/MSALNativeAuthJITContinueResponseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/jit/MSALNativeAuthJITContinueResponseError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/sign_up/MSALNativeAuthErrorBasicAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/sign_up/MSALNativeAuthErrorBasicAttribute.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/token/MSALNativeAuthTokenOauth2ErrorCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/token/MSALNativeAuthTokenOauth2ErrorCode.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/errors/token/MSALNativeAuthTokenResponseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/errors/token/MSALNativeAuthTokenResponseError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/jit/MSALNativeAuthJITRequestProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/jit/MSALNativeAuthJITRequestProvider.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/parameters/MSALNativeAuthRequestContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/parameters/MSALNativeAuthRequestContext.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/parameters/MSALNativeAuthRequestable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/parameters/MSALNativeAuthRequestable.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/responses/MSALNativeAuthResendCodeRequestResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/responses/MSALNativeAuthResendCodeRequestResponse.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/responses/jit/MSALNativeAuthJITChallengeResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/responses/jit/MSALNativeAuthJITChallengeResponse.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/responses/jit/MSALNativeAuthJITContinueResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/responses/jit/MSALNativeAuthJITContinueResponse.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/responses/jit/MSALNativeAuthJITIntrospectResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/responses/jit/MSALNativeAuthJITIntrospectResponse.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/responses/token/MSALNativeAuthCIAMTokenResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/responses/token/MSALNativeAuthCIAMTokenResponse.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/sign_in/MSALNativeAuthSignInRequestProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/sign_in/MSALNativeAuthSignInRequestProvider.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/sign_up/MSALNativeAuthSignUpRequestProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/sign_up/MSALNativeAuthSignUpRequestProvider.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/network/token/MSALNativeAuthTokenRequestProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/network/token/MSALNativeAuthTokenRequestProvider.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/MSALAuthMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/MSALAuthMethod.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/MSALNativeAuthCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/MSALNativeAuthCapabilities.h -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/MSALNativeAuthChallengeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/MSALNativeAuthChallengeTypes.h -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/MSALNativeAuthChannelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/MSALNativeAuthChannelType.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/MSALNativeAuthPublicClientApplication+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/MSALNativeAuthPublicClientApplication+Internal.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/MSALNativeAuthPublicClientApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/MSALNativeAuthPublicClientApplication.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/parameters/MSALNativeAuthGetAccessTokenParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/parameters/MSALNativeAuthGetAccessTokenParameters.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/parameters/MSALNativeAuthResetPasswordParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/parameters/MSALNativeAuthResetPasswordParameters.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/parameters/MSALNativeAuthSignInParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/parameters/MSALNativeAuthSignInParameters.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/parameters/MSALNativeAuthSignUpParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/parameters/MSALNativeAuthSignUpParameters.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/MSALNativeAuthRequiredAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/MSALNativeAuthRequiredAttribute.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/delegate/CredentialsDelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/delegate/CredentialsDelegates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/delegate/JITDelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/delegate/JITDelegates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/delegate/MFADelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/delegate/MFADelegates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/delegate/ResetPasswordDelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/delegate/ResetPasswordDelegates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/delegate/SignInAfterSignUpDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/delegate/SignInAfterSignUpDelegate.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/delegate/SignInDelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/delegate/SignInDelegates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/delegate/SignUpDelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/delegate/SignUpDelegates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/AttributesRequiredError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/AttributesRequiredError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/MFARequestChallengeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/MFARequestChallengeError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/MFASubmitChallengeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/MFASubmitChallengeError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/MSALNativeAuthError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/MSALNativeAuthError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/MSALNativeAuthGenericError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/MSALNativeAuthGenericError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/PasswordRequiredError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/PasswordRequiredError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/ResendCodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/ResendCodeError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/ResetPasswordStartError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/ResetPasswordStartError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/RetrieveAccessTokenError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/RetrieveAccessTokenError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/SignInAfterResetPasswordError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/SignInAfterResetPasswordError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/SignInAfterSignUpError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/SignInAfterSignUpError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/SignInStartError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/SignInStartError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/SignUpStartError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/SignUpStartError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/error/VerifyCodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/error/VerifyCodeError.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/result/MSALNativeAuthTokenResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/result/MSALNativeAuthTokenResult.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/JITStates+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/JITStates+Internal.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/JITStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/JITStates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/MFAStates+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/MFAStates+Internal.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/MFAStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/MFAStates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/MSALNativeAuthBaseState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/MSALNativeAuthBaseState.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/ResetPasswordStates+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/ResetPasswordStates+Internal.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/ResetPasswordStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/ResetPasswordStates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/SignInAfterResetPasswordState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/SignInAfterResetPasswordState.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/SignInAfterSignUpState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/SignInAfterSignUpState.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/SignInStates+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/SignInStates+Internal.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/SignInStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/SignInStates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/SignUpStates+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/SignUpStates+Internal.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/public/state_machine/state/SignUpStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/public/state_machine/state/SignUpStates.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/telemetry/MSALNativeAuthCurrentRequestTelemetry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/telemetry/MSALNativeAuthCurrentRequestTelemetry.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/telemetry/MSALNativeAuthOperationTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/telemetry/MSALNativeAuthOperationTypes.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/telemetry/MSALNativeAuthServerTelemetry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/telemetry/MSALNativeAuthServerTelemetry.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/telemetry/MSALNativeAuthTelemetryApiId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/telemetry/MSALNativeAuthTelemetryApiId.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/telemetry/MSALNativeAuthTelemetryProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/telemetry/MSALNativeAuthTelemetryProvider.swift -------------------------------------------------------------------------------- /MSAL/src/native_auth/validation/MSALNativeAuthAuthorityProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/native_auth/validation/MSALNativeAuthAuthorityProvider.swift -------------------------------------------------------------------------------- /MSAL/src/public/MSAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSAL.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAADAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAADAuthority.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALADFSAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALADFSAuthority.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAccount.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAccountEnumerationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAccountEnumerationParameters.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAccountId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAccountId.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAuthenticationSchemeBearer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAuthenticationSchemeBearer.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAuthenticationSchemePop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAuthenticationSchemePop.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAuthenticationSchemeProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAuthenticationSchemeProtocol.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALAuthority.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALB2CAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALB2CAuthority.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALCIAMAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALCIAMAuthority.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALClaimsRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALClaimsRequest.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALDefinitions.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALDeviceInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALDeviceInformation.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALError.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALHttpMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALHttpMethod.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALIndividualClaimRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALIndividualClaimRequest.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALIndividualClaimRequestAdditionalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALIndividualClaimRequestAdditionalInfo.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALInteractiveTokenParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALInteractiveTokenParameters.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALJsonDeserializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALJsonDeserializable.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALJsonSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALJsonSerializable.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALParameters.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALPublicClientApplication+SingleAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALPublicClientApplication+SingleAccount.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALPublicClientApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALPublicClientApplication.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALPublicClientStatusNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALPublicClientStatusNotifications.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALRedirectUri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALRedirectUri.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALResult.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALSignoutParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALSignoutParameters.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALSilentTokenParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALSilentTokenParameters.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALTenantProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALTenantProfile.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALTokenParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALTokenParameters.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALWPJMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALWPJMetaData.h -------------------------------------------------------------------------------- /MSAL/src/public/MSALWebviewParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/MSALWebviewParameters.h -------------------------------------------------------------------------------- /MSAL/src/public/configuration/MSALGlobalConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/configuration/MSALGlobalConfig.h -------------------------------------------------------------------------------- /MSAL/src/public/configuration/MSALPublicClientApplicationConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/configuration/MSALPublicClientApplicationConfig.h -------------------------------------------------------------------------------- /MSAL/src/public/configuration/global/MSALHTTPConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/configuration/global/MSALHTTPConfig.h -------------------------------------------------------------------------------- /MSAL/src/public/configuration/global/MSALLoggerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/configuration/global/MSALLoggerConfig.h -------------------------------------------------------------------------------- /MSAL/src/public/configuration/global/MSALTelemetryConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/configuration/global/MSALTelemetryConfig.h -------------------------------------------------------------------------------- /MSAL/src/public/configuration/publicClientApplication/MSALSliceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/configuration/publicClientApplication/MSALSliceConfig.h -------------------------------------------------------------------------------- /MSAL/src/public/configuration/publicClientApplication/cache/MSALCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/configuration/publicClientApplication/cache/MSALCacheConfig.h -------------------------------------------------------------------------------- /MSAL/src/public/ios/cache/MSALLegacySharedAccountsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/public/ios/cache/MSALLegacySharedAccountsProvider.h -------------------------------------------------------------------------------- /MSAL/src/telemetry/MSALTelemetryEventsObservingProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/telemetry/MSALTelemetryEventsObservingProxy.h -------------------------------------------------------------------------------- /MSAL/src/telemetry/MSALTelemetryEventsObservingProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/telemetry/MSALTelemetryEventsObservingProxy.m -------------------------------------------------------------------------------- /MSAL/src/util/MSALRedirectUri+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/util/MSALRedirectUri+Internal.h -------------------------------------------------------------------------------- /MSAL/src/util/MSALRedirectUri.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/util/MSALRedirectUri.m -------------------------------------------------------------------------------- /MSAL/src/util/MSALRedirectUriVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/util/MSALRedirectUriVerifier.h -------------------------------------------------------------------------------- /MSAL/src/util/MSALRedirectUriVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/src/util/MSALRedirectUriVerifier.m -------------------------------------------------------------------------------- /MSAL/test/NSString+MSALTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/NSString+MSALTestUtil.h -------------------------------------------------------------------------------- /MSAL/test/NSString+MSALTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/NSString+MSALTestUtil.m -------------------------------------------------------------------------------- /MSAL/test/XCTestCase+HelperMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/XCTestCase+HelperMethods.h -------------------------------------------------------------------------------- /MSAL/test/XCTestCase+HelperMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/XCTestCase+HelperMethods.m -------------------------------------------------------------------------------- /MSAL/test/app/MSALStressTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/MSALStressTestHelper.h -------------------------------------------------------------------------------- /MSAL/test/app/MSALStressTestHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/MSALStressTestHelper.m -------------------------------------------------------------------------------- /MSAL/test/app/MSALTestAppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/MSALTestAppSettings.h -------------------------------------------------------------------------------- /MSAL/test/app/MSALTestAppSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/MSALTestAppSettings.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/Launch Screen.storyboard -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALCacheItemDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALCacheItemDetailViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALCacheItemDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALCacheItemDetailViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAcquireLayoutBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAcquireLayoutBuilder.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAcquireLayoutBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAcquireLayoutBuilder.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAcquireTokenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAcquireTokenViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAcquireTokenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAcquireTokenViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAcquireTokenViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAcquireTokenViewController.storyboard -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAsymmetricKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAsymmetricKey.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAsymmetricKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAsymmetricKey.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAuthorityTypeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAuthorityTypeViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAuthorityTypeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAuthorityTypeViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAuthorityViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAuthorityViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppAuthorityViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppAuthorityViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppB2CAuthorityViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppB2CAuthorityViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppB2CAuthorityViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppB2CAuthorityViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppCacheViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppCacheViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppCacheViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppCacheViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppDelegate.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppDelegate.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppLogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppLogViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppLogViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppLogViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppProfileViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppProfileViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppScopesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppScopesViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppScopesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppScopesViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppSettingViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppSettingViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppSettingsViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppSettingsViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppTelemetryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppTelemetryViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppTelemetryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppTelemetryViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppUserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppUserViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/ios/MSALTestAppUserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/MSALTestAppUserViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/main.m -------------------------------------------------------------------------------- /MSAL/test/app/ios/resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MSAL/test/app/ios/resources/Images.xcassets/AppIcon.appiconset/adal_purple_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/resources/Images.xcassets/AppIcon.appiconset/adal_purple_icon.png -------------------------------------------------------------------------------- /MSAL/test/app/ios/resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /MSAL/test/app/ios/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/ios/resources/Info.plist -------------------------------------------------------------------------------- /MSAL/test/app/mac/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MSAL/test/app/mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MSAL/test/app/mac/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MSAL/test/app/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/Info.plist -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALAcquireTokenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALAcquireTokenViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALAcquireTokenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALAcquireTokenViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALAppDelegate.h -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALAppDelegate.m -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALCacheViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALCacheViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALCacheViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALCacheViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALMacTestApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALMacTestApp.entitlements -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALScopesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALScopesViewController.h -------------------------------------------------------------------------------- /MSAL/test/app/mac/MSALScopesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/MSALScopesViewController.m -------------------------------------------------------------------------------- /MSAL/test/app/mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/mac/main.m -------------------------------------------------------------------------------- /MSAL/test/app/vision/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/ContentView.swift -------------------------------------------------------------------------------- /MSAL/test/app/vision/MSALTestAppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/MSALTestAppView.swift -------------------------------------------------------------------------------- /MSAL/test/app/vision/MSALTestAppVisionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/MSALTestAppVisionViewController.swift -------------------------------------------------------------------------------- /MSAL/test/app/vision/MSAL_Test_App-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/MSAL_Test_App-Bridging-Header.h -------------------------------------------------------------------------------- /MSAL/test/app/vision/MSAL_Test_App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/MSAL_Test_App.swift -------------------------------------------------------------------------------- /MSAL/test/app/vision/resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MSAL/test/app/vision/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/resources/Info.plist -------------------------------------------------------------------------------- /MSAL/test/app/vision/resources/MSAL Test App (visionOS).entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/app/vision/resources/MSAL Test App (visionOS).entitlements -------------------------------------------------------------------------------- /MSAL/test/automation/ios/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/Launch Screen.storyboard -------------------------------------------------------------------------------- /MSAL/test/automation/ios/MSALAutoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/MSALAutoAppDelegate.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/MSALAutoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/MSALAutoAppDelegate.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/MSALAutomation.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/MSALAutomation.entitlements -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenAction.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenAction.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenSilentAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenSilentAction.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenSilentAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationAcquireTokenSilentAction.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationBaseAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationBaseAction.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationBaseAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationBaseAction.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationExpireATAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationExpireATAction.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationExpireATAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationExpireATAction.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationInvalidateRTAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationInvalidateRTAction.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationInvalidateRTAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationInvalidateRTAction.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationReadAccountsAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationReadAccountsAction.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationReadAccountsAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationReadAccountsAction.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationRemoveAccountAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationRemoveAccountAction.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/actions/MSALAutomationRemoveAccountAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/actions/MSALAutomationRemoveAccountAction.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/main.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /MSAL/test/automation/ios/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/resources/Info.plist -------------------------------------------------------------------------------- /MSAL/test/automation/ios/util/MSALResult+Automation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/util/MSALResult+Automation.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/util/MSALResult+Automation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/util/MSALResult+Automation.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/util/MSALUser+Automation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/util/MSALUser+Automation.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/util/MSALUser+Automation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/util/MSALUser+Automation.m -------------------------------------------------------------------------------- /MSAL/test/automation/ios/util/MSIDTokenCacheItem+Automation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/util/MSIDTokenCacheItem+Automation.h -------------------------------------------------------------------------------- /MSAL/test/automation/ios/util/MSIDTokenCacheItem+Automation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/ios/util/MSIDTokenCacheItem+Automation.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALADFSBaseUITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALADFSBaseUITest.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALADFSBaseUITest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALADFSBaseUITest.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALBaseAADUITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALBaseAADUITest.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALBaseAADUITest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALBaseAADUITest.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALBaseUITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALBaseUITest.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALBaseUITest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALBaseUITest.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALBaseiOSUITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALBaseiOSUITest.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALBaseiOSUITest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALBaseiOSUITest.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALTestsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALTestsConfig.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALTestsConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALTestsConfig.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/MSALUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/MSALUITests.swift -------------------------------------------------------------------------------- /MSAL/test/automation/tests/NSDictionary+MSALiOSUITests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/NSDictionary+MSALiOSUITests.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/NSDictionary+MSALiOSUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/NSDictionary+MSALiOSUITests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/XCUIElement+MSALiOSUITests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/XCUIElement+MSALiOSUITests.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/XCUIElement+MSALiOSUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/XCUIElement+MSALiOSUITests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/Info.plist -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALAADBasicInteractiveTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALAADBasicInteractiveTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALAADMultiUserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALAADMultiUserTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALADFSv3FederatedTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALADFSv3FederatedTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALADFSv4FederatedTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALADFSv4FederatedTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALB2CInteractiveTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALB2CInteractiveTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALCIAMAuthorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALCIAMAuthorityTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALCacheRemovalTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALCacheRemovalTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALChinaCloudUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALChinaCloudUITests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALGuestUserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALGuestUserTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALMSABasicInteractiveTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALMSABasicInteractiveTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALNationalCloudUITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALNationalCloudUITest.h -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALNationalCloudUITest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALNationalCloudUITest.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALPingUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALPingUITests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALShibUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALShibUITests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/interactive/MSALUSGovUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/interactive/MSALUSGovUITests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/multiapp/MSALDotNetCacheCoexistenceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/multiapp/MSALDotNetCacheCoexistenceTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/multiapp/MSALMultiAppCacheCoexistenceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/multiapp/MSALMultiAppCacheCoexistenceTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/multiapp/MSALNonUnifiedADALCoexistenceCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/multiapp/MSALNonUnifiedADALCoexistenceCacheTests.m -------------------------------------------------------------------------------- /MSAL/test/automation/tests/multiapp/MSALUnifiedADALCacheCoexistenceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/automation/tests/multiapp/MSALUnifiedADALCacheCoexistenceTests.m -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/MockAPIHandlerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/MockAPIHandlerTest.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/common/MSALNativeAuthIntegrationBaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/common/MSALNativeAuthIntegrationBaseTests.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/common/MockAPIHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/common/MockAPIHandler.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/common/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/common/Model.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/end_to_end/AuthorityURLFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/end_to_end/AuthorityURLFormat.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/end_to_end/ClientIdType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/end_to_end/ClientIdType.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/end_to_end/mfa/JITDelegateSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/end_to_end/mfa/JITDelegateSpies.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/end_to_end/mfa/MFADelegateSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/end_to_end/mfa/MFADelegateSpies.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/end_to_end/mock/AttributesStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/end_to_end/mock/AttributesStub.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/end_to_end/sign_in/SignInDelegateSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/end_to_end/sign_in/SignInDelegateSpies.swift -------------------------------------------------------------------------------- /MSAL/test/integration/native_auth/end_to_end/sign_up/SignUpDelegateSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/integration/native_auth/end_to_end/sign_up/SignUpDelegateSpies.swift -------------------------------------------------------------------------------- /MSAL/test/testplan/MSAL Mac Native Auth E2E Tests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/testplan/MSAL Mac Native Auth E2E Tests.xctestplan -------------------------------------------------------------------------------- /MSAL/test/testplan/MSAL iOS Native Auth E2E Tests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/testplan/MSAL iOS Native Auth E2E Tests.xctestplan -------------------------------------------------------------------------------- /MSAL/test/testplan/NativeAuthEndToEndTestPlan Mac.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/testplan/NativeAuthEndToEndTestPlan Mac.xctestplan -------------------------------------------------------------------------------- /MSAL/test/testplan/NativeAuthEndToEndTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/testplan/NativeAuthEndToEndTestPlan.xctestplan -------------------------------------------------------------------------------- /MSAL/test/unit/MSALAADAuthorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALAADAuthorityTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALAccountIdTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALAccountIdTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALAccountTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALAccountsProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALAccountsProviderTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALAcquireTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALAcquireTokenTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALAuthSchemeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALAuthSchemeTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALB2CPolicyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALB2CPolicyTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALClaimsRequestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALClaimsRequestTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALDeviceInfoProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALDeviceInfoProviderTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALErrorConverterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALErrorConverterTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALExternalAccountHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALExternalAccountHandlerTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALOauth2FactoryProducerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALOauth2FactoryProducerTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALPublicClientApplicationAccountUpdateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALPublicClientApplicationAccountUpdateTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALPublicClientApplicationConfigTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALPublicClientApplicationConfigTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALPublicClientApplicationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALPublicClientApplicationTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALResultTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALResultTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALTelemetryAggregatedTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALTelemetryAggregatedTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/MSALTelemetryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/MSALTelemetryTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/MSALLegacySharedADALAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/MSALLegacySharedADALAccountTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountFactoryTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountTestUtil.h -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountTestUtil.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountsProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/MSALLegacySharedAccountsProviderTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/MSALLegacySharedMSAAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/MSALLegacySharedMSAAccountTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/external-cache/NSStringAccountIdentifiersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/external-cache/NSStringAccountIdentifiersTest.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/AppDelegate.h -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/AppDelegate.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/Info.plist -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/ViewController.h -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/ViewController.m -------------------------------------------------------------------------------- /MSAL/test/unit/ios/unit-test-host/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/ios/unit-test-host/main.m -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/AppDelegate.h -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/AppDelegate.m -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/Info.plist -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/ViewController.h -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/ViewController.m -------------------------------------------------------------------------------- /MSAL/test/unit/mac/unit-test-host/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mac/unit-test-host/main.m -------------------------------------------------------------------------------- /MSAL/test/unit/mocks/MSALMockExternalAccountHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mocks/MSALMockExternalAccountHandler.h -------------------------------------------------------------------------------- /MSAL/test/unit/mocks/MSALMockExternalAccountHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/mocks/MSALMockExternalAccountHandler.m -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/MSALNativeAuthTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/MSALNativeAuthTestCase.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/cache/MSALNativeAuthCacheAccessorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/cache/MSALNativeAuthCacheAccessorTest.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/controllers/MSALNativeAuthBaseControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/controllers/MSALNativeAuthBaseControllerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/controllers/MSALNativeAuthJITControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/controllers/MSALNativeAuthJITControllerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/controllers/MSALNativeAuthMFAControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/controllers/MSALNativeAuthMFAControllerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/controllers/MSALNativeAuthSignInControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/controllers/MSALNativeAuthSignInControllerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/controllers/MSALNativeAuthSignUpControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/controllers/MSALNativeAuthSignUpControllerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/input_validator/MSALNativeAuthInputValidatorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/input_validator/MSALNativeAuthInputValidatorTest.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/logger/MSALLogMaskTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/logger/MSALLogMaskTests.m -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/logger/MSALNativeLoggingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/logger/MSALNativeLoggingTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthCacheMocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthCacheMocks.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthConfigStubs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthConfigStubs.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthCredentialsControllerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthCredentialsControllerMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthFactoriesMocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthFactoriesMocks.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthHTTPRequestMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthHTTPRequestMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthJITControllerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthJITControllerMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthNetworkMocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthNetworkMocks.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthResetPasswordControllerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthResetPasswordControllerMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthSignInControllerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthSignInControllerMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpControllerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpControllerMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpControllerSpy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpControllerSpy.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpRequestProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpRequestProviderMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpResponseValidatorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthSignUpResponseValidatorMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthSilentTokenProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthSilentTokenProviderMock.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/MSALNativeAuthUserAccountResultStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/MSALNativeAuthUserAccountResultStub.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/ResetPasswordTestValidatorHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/ResetPasswordTestValidatorHelpers.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/SignInTestsValidatorHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/SignInTestsValidatorHelpers.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/SignUpTestsValidatorHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/SignUpTestsValidatorHelpers.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/delegate/CredentialsDelegateSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/delegate/CredentialsDelegateSpies.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/delegate/JITDelegatesSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/delegate/JITDelegatesSpies.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/delegate/MFADelegatesSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/delegate/MFADelegatesSpies.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/delegate/ResetPasswordDelegateSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/delegate/ResetPasswordDelegateSpies.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/delegate/SignInDelegatesSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/delegate/SignInDelegatesSpies.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/mock/delegate/SignUpDelegateSpies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/mock/delegate/SignUpDelegateSpies.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthCustomErrorSerializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthCustomErrorSerializerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthEndpointTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthEndpointTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthInternalConfigurationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthInternalConfigurationTest.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthRequestConfiguratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthRequestConfiguratorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthRequestErrorHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthRequestErrorHandlerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthRequestableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthRequestableTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthResponseCorrelatableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthResponseCorrelatableTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthResponseSerializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthResponseSerializerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthSignUpRequestProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthSignUpRequestProviderTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthUnknownCaseProtocolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthUnknownCaseProtocolTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/MSALNativeAuthUrlRequestSerializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/MSALNativeAuthUrlRequestSerializerTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/network/errors/MSALNativeAuthSubErrorCodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/network/errors/MSALNativeAuthSubErrorCodeTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/MSALNativeAuthPublicClientApplicationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/MSALNativeAuthPublicClientApplicationTest.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/MSALNativeAuthUserAccountResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/MSALNativeAuthUserAccountResultTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/AttributesRequiredErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/AttributesRequiredErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/MFARequestChallengeErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/MFARequestChallengeErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/MFASubmitChallengeErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/MFASubmitChallengeErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/PasswordRequiredErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/PasswordRequiredErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/ResendCodeErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/ResendCodeErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/ResetPasswordStartErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/ResetPasswordStartErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/RetrieveAccessTokenErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/RetrieveAccessTokenErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/SignInAfterResetPasswordErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/SignInAfterResetPasswordErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/SignInAfterSignUpErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/SignInAfterSignUpErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/SignInStartErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/SignInStartErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/SignUpStartErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/SignUpStartErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/error/VerifyCodeErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/error/VerifyCodeErrorTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/state_machine/mfa/AwaitingMFAStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/state_machine/mfa/AwaitingMFAStateTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/public/state_machine/mfa/MFARequiredStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/public/state_machine/mfa/MFARequiredStateTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/telemetry/MSALNativeAuthTelemetryProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/telemetry/MSALNativeAuthTelemetryProviderTests.swift -------------------------------------------------------------------------------- /MSAL/test/unit/native_auth/utils/MSALNativeAuthTelemetryTestDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/native_auth/utils/MSALNativeAuthTelemetryTestDispatcher.swift -------------------------------------------------------------------------------- /MSAL/test/unit/resources/OpenIdConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/resources/OpenIdConfiguration.json -------------------------------------------------------------------------------- /MSAL/test/unit/resources/OpenIdConfigurationMissingFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/resources/OpenIdConfigurationMissingFields.json -------------------------------------------------------------------------------- /MSAL/test/unit/resources/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/resources/ios/Info.plist -------------------------------------------------------------------------------- /MSAL/test/unit/resources/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/resources/mac/Info.plist -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALDevicePopManagerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALDevicePopManagerUtil.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALDevicePopManagerUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALDevicePopManagerUtil.m -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALTestCacheTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALTestCacheTokenResponse.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALTestCacheTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALTestCacheTokenResponse.m -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALTestCase.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALTestCase.m -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALTestConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALTestConstants.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALTestURLSessionDataTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALTestURLSessionDataTask.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSALTestURLSessionDataTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSALTestURLSessionDataTask.m -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSIDTestURLResponse+MSAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSIDTestURLResponse+MSAL.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSIDTestURLResponse+MSAL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSIDTestURLResponse+MSAL.m -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSIDTestURLSession+MSAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSIDTestURLSession+MSAL.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/MSIDTestURLSession+MSAL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/MSIDTestURLSession+MSAL.m -------------------------------------------------------------------------------- /MSAL/test/unit/utils/ios/MSALFakeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/ios/MSALFakeViewController.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/ios/MSALFakeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/ios/MSALFakeViewController.m -------------------------------------------------------------------------------- /MSAL/test/unit/utils/ios/SFSafariViewController+TestOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/ios/SFSafariViewController+TestOverrides.h -------------------------------------------------------------------------------- /MSAL/test/unit/utils/ios/SFSafariViewController+TestOverrides.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/test/unit/utils/ios/SFSafariViewController+TestOverrides.m -------------------------------------------------------------------------------- /MSAL/unit-test-host.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/unit-test-host.entitlements -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__automation_app__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__automation_app__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__common.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__common__framework__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__common__framework__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__common__framework__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__common__framework__mac.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__common__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__common__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__common__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__common__mac.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__debug.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__framework__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__framework__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__framework__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__framework__mac.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__release.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__static__lib__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__static__lib__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__static__lib__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__static__lib__mac.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__test_app__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__test_app__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__test_app__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__test_app__mac.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__test_app__vision.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__test_app__vision.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__ui_test__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__ui_test__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__unit_test__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__unit_test__ios.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__unit_test__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__unit_test__mac.xcconfig -------------------------------------------------------------------------------- /MSAL/xcconfig/msal__unit_test_host__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/MSAL/xcconfig/msal__unit_test_host__ios.xcconfig -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseArchive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/ReleaseArchive.sh -------------------------------------------------------------------------------- /Samples/ios/SampleApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Samples/ios/SampleApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/Info.plist -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleAppDelegate.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleAppDelegate.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleAppErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleAppErrors.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleAppErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleAppErrors.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleAppiOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleAppiOS.entitlements -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleBaseViewController.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleBaseViewController.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleCalendarUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleCalendarUtil.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleCalendarUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleCalendarUtil.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleGraphRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleGraphRequest.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleGraphRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleGraphRequest.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleLoginViewController.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleLoginViewController.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleMSALUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleMSALUtil.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleMSALUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleMSALUtil.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleMainView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleMainView.xib -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleMainViewController.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SampleMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SampleMainViewController.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SamplePhotoUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SamplePhotoUtil.h -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/SamplePhotoUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/SamplePhotoUtil.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/main.m -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleAppiOS/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleAppiOS/no_photo.png -------------------------------------------------------------------------------- /Samples/ios/SampleApp/SampleLoginView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleApp/SampleLoginView.xib -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/AppDelegate.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/Info.plist -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleAppErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleAppErrors.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleAppiOS-Swift.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleAppiOS-Swift.entitlements -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleCalendarEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleCalendarEvent.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleCalendarUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleCalendarUtil.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleGraphRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleGraphRequest.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleGraphScopes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleGraphScopes.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleLoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleLoginViewController.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleMSALAuthentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleMSALAuthentication.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SampleMainViewController.swift -------------------------------------------------------------------------------- /Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SamplePhotoUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/Samples/ios/SampleAppiOS-Swift/SampleAppiOS-Swift/SamplePhotoUtil.swift -------------------------------------------------------------------------------- /TestRubyFile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/TestRubyFile.rb -------------------------------------------------------------------------------- /azure_pipelines/automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/azure_pipelines/automation.yml -------------------------------------------------------------------------------- /azure_pipelines/broker_submodule_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/azure_pipelines/broker_submodule_check.yml -------------------------------------------------------------------------------- /azure_pipelines/changelogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/azure_pipelines/changelogs.yml -------------------------------------------------------------------------------- /azure_pipelines/msal-release-ado-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/azure_pipelines/msal-release-ado-trigger.yml -------------------------------------------------------------------------------- /azure_pipelines/pr-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/azure_pipelines/pr-validation.yml -------------------------------------------------------------------------------- /azure_pipelines/scripts/get_automation_conf_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/azure_pipelines/scripts/get_automation_conf_file.py -------------------------------------------------------------------------------- /azure_pipelines/templates/tests-with-conf-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/azure_pipelines/templates/tests-with-conf-file.yml -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /device_guids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/device_guids.py -------------------------------------------------------------------------------- /docs/MSAL_2x_Migration_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/docs/MSAL_2x_Migration_Guide.md -------------------------------------------------------------------------------- /docs/access_token-pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/docs/access_token-pop.md -------------------------------------------------------------------------------- /spm-integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-objc/HEAD/spm-integration-test.sh --------------------------------------------------------------------------------