├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation.yml │ └── feature_request.yml └── config.yml ├── .gitignore ├── CODEOWNERS ├── IdentityCore.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDETemplateMacros.plist │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── IdentityCore ├── IdentityCore.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── IdentityCore Mac.xcscheme │ │ └── IdentityCore iOS.xcscheme ├── IdentityCoreSwift │ └── IdentityCoreSwift.swift ├── MSIDTestsHostApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── MSIDTestsHostApp.entitlements │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── src │ ├── IdentityCore.pch │ ├── IdentityCore_Internal.h │ ├── MSIDAADNetworkConfiguration.h │ ├── MSIDAADNetworkConfiguration.m │ ├── MSIDBasicContext.h │ ├── MSIDBasicContext.m │ ├── MSIDBrokerConstants.h │ ├── MSIDBrokerConstants.m │ ├── MSIDBrokerFlightProvider.h │ ├── MSIDBrokerFlightProvider.m │ ├── MSIDCache.h │ ├── MSIDCache.m │ ├── MSIDClientSDKType.h │ ├── MSIDClientSDKType.m │ ├── MSIDConstants.h │ ├── MSIDConstants.m │ ├── MSIDDRSType.h │ ├── MSIDDefaultErrorConverter.h │ ├── MSIDDefaultErrorConverter.m │ ├── MSIDDeviceId.h │ ├── MSIDDeviceId.m │ ├── MSIDError.h │ ├── MSIDError.m │ ├── MSIDErrorConverter.h │ ├── MSIDErrorConverter.m │ ├── MSIDErrorConverting.h │ ├── MSIDExternalAADCacheSeeder.h │ ├── MSIDExternalAADCacheSeeder.m │ ├── MSIDFlightManager.h │ ├── MSIDFlightManager.m │ ├── MSIDFlightManagerQueryKeyDelegate.h │ ├── MSIDFlightManagerQueryKeyType.h │ ├── MSIDFlightManagerQueryKeyType.m │ ├── MSIDJsonSerializableFactory.h │ ├── MSIDJsonSerializableFactory.m │ ├── MSIDJsonSerializableTypes.h │ ├── MSIDJsonSerializableTypes.m │ ├── MSIDJsonSerializer.h │ ├── MSIDJsonSerializer.m │ ├── MSIDJsonSerializing.h │ ├── MSIDJwtAlgorithm.h │ ├── MSIDJwtAlgorithm.m │ ├── MSIDNotifications.h │ ├── MSIDNotifications.m │ ├── MSIDOAuth2Constants.h │ ├── MSIDOAuth2Constants.m │ ├── MSIDProviderType.h │ ├── MSIDProviderType.m │ ├── MSIDRequestContext.h │ ├── MSIDTelemetryStringSerializable.h │ ├── MSIDVersion.h │ ├── MSIDWebResponseOperationConstants.h │ ├── MSIDWebResponseOperationConstants.m │ ├── auth_scheme │ │ ├── MSIDAuthenticationScheme.h │ │ ├── MSIDAuthenticationScheme.m │ │ ├── MSIDAuthenticationSchemeBearer.h │ │ ├── MSIDAuthenticationSchemeBearer.m │ │ ├── MSIDAuthenticationSchemePop.h │ │ ├── MSIDAuthenticationSchemePop.m │ │ ├── MSIDAuthenticationSchemeSshCert.h │ │ └── MSIDAuthenticationSchemeSshCert.m │ ├── broker_operation │ │ ├── request │ │ │ ├── MSIDBaseBrokerOperationRequest.h │ │ │ ├── MSIDBaseBrokerOperationRequest.m │ │ │ ├── MSIDBrokerOperationGetDeviceInfoRequest.h │ │ │ ├── MSIDBrokerOperationGetDeviceInfoRequest.m │ │ │ ├── MSIDBrokerOperationPasskeyAssertionRequest.h │ │ │ ├── MSIDBrokerOperationPasskeyAssertionRequest.m │ │ │ ├── MSIDBrokerOperationPasskeyCredentialRequest.h │ │ │ ├── MSIDBrokerOperationPasskeyCredentialRequest.m │ │ │ ├── MSIDBrokerOperationRequest.h │ │ │ ├── MSIDBrokerOperationRequest.m │ │ │ ├── account_request │ │ │ │ ├── MSIDBrokerOperationGetAccountsRequest.h │ │ │ │ ├── MSIDBrokerOperationGetAccountsRequest.m │ │ │ │ ├── MSIDBrokerOperationRemoveAccountRequest.h │ │ │ │ ├── MSIDBrokerOperationRemoveAccountRequest.m │ │ │ │ ├── MSIDBrokerOperationSignoutFromDeviceRequest.h │ │ │ │ └── MSIDBrokerOperationSignoutFromDeviceRequest.m │ │ │ ├── browser_native_message_request │ │ │ │ ├── MSIDBrokerOperationBrowserNativeMessageRequest.h │ │ │ │ ├── MSIDBrokerOperationBrowserNativeMessageRequest.m │ │ │ │ ├── MSIDBrowserNativeMessageGetCookiesRequest.h │ │ │ │ ├── MSIDBrowserNativeMessageGetCookiesRequest.m │ │ │ │ ├── MSIDBrowserNativeMessageGetSupportedContractsRequest.h │ │ │ │ ├── MSIDBrowserNativeMessageGetSupportedContractsRequest.m │ │ │ │ ├── MSIDBrowserNativeMessageGetTokenRequest.h │ │ │ │ ├── MSIDBrowserNativeMessageGetTokenRequest.m │ │ │ │ ├── MSIDBrowserNativeMessageRequest.h │ │ │ │ ├── MSIDBrowserNativeMessageRequest.m │ │ │ │ ├── MSIDBrowserNativeMessageSignOutRequest.h │ │ │ │ └── MSIDBrowserNativeMessageSignOutRequest.m │ │ │ ├── interactive_token_request │ │ │ │ ├── MSIDBrokerOperationInteractiveTokenRequest.h │ │ │ │ └── MSIDBrokerOperationInteractiveTokenRequest.m │ │ │ ├── silent_token_request │ │ │ │ ├── MSIDBrokerOperationSilentTokenRequest.h │ │ │ │ └── MSIDBrokerOperationSilentTokenRequest.m │ │ │ ├── sso_cookies_request │ │ │ │ ├── MSIDBrokerOperationGetSsoCookiesRequest.h │ │ │ │ └── MSIDBrokerOperationGetSsoCookiesRequest.m │ │ │ └── token_request │ │ │ │ ├── MSIDBrokerOperationBrowserTokenRequest.h │ │ │ │ ├── MSIDBrokerOperationBrowserTokenRequest.m │ │ │ │ ├── MSIDBrokerOperationTokenRequest.h │ │ │ │ ├── MSIDBrokerOperationTokenRequest.m │ │ │ │ └── MSIDBrowserRequestValidating.h │ │ └── response │ │ │ ├── MSIDBrokerBrowserOperationResponse.h │ │ │ ├── MSIDBrokerBrowserOperationResponse.m │ │ │ ├── MSIDBrokerNativeAppOperationResponse.h │ │ │ ├── MSIDBrokerNativeAppOperationResponse.m │ │ │ ├── MSIDBrokerOperationGetAccountsResponse.h │ │ │ ├── MSIDBrokerOperationGetAccountsResponse.m │ │ │ ├── MSIDBrokerOperationGetPasskeyAssertionResponse.h │ │ │ ├── MSIDBrokerOperationGetPasskeyAssertionResponse.m │ │ │ ├── MSIDBrokerOperationGetPasskeyCredentialResponse.h │ │ │ ├── MSIDBrokerOperationGetPasskeyCredentialResponse.m │ │ │ ├── MSIDBrokerOperationGetSsoCookiesResponse.h │ │ │ ├── MSIDBrokerOperationGetSsoCookiesResponse.m │ │ │ ├── MSIDBrokerOperationResponse.h │ │ │ ├── MSIDBrokerOperationResponse.m │ │ │ ├── MSIDBrokerOperationResponseHandling.h │ │ │ ├── MSIDBrokerOperationTokenResponse.h │ │ │ ├── MSIDBrokerOperationTokenResponse.m │ │ │ ├── MSIDDeviceInfo.h │ │ │ ├── MSIDDeviceInfo.m │ │ │ ├── MSIDPasskeyAssertion.h │ │ │ ├── MSIDPasskeyAssertion.m │ │ │ ├── MSIDPasskeyCredential.h │ │ │ ├── MSIDPasskeyCredential.m │ │ │ ├── browser_native_message_response │ │ │ ├── MSIDBrokerOperationBrowserNativeMessageMATSReport.h │ │ │ ├── MSIDBrokerOperationBrowserNativeMessageMATSReport.m │ │ │ ├── MSIDBrokerOperationBrowserNativeMessageResponse.h │ │ │ ├── MSIDBrokerOperationBrowserNativeMessageResponse.m │ │ │ ├── MSIDBrowserNativeMessageGetCookiesResponse.h │ │ │ ├── MSIDBrowserNativeMessageGetCookiesResponse.m │ │ │ ├── MSIDBrowserNativeMessageGetSupportedContractsResponse.h │ │ │ ├── MSIDBrowserNativeMessageGetSupportedContractsResponse.m │ │ │ ├── MSIDBrowserNativeMessageGetTokenResponse.h │ │ │ ├── MSIDBrowserNativeMessageGetTokenResponse.m │ │ │ ├── MSIDBrowserNativeMessageSignOutResponse.h │ │ │ └── MSIDBrowserNativeMessageSignOutResponse.m │ │ │ └── sso_cookies_response │ │ │ ├── MSIDCredentialHeader.h │ │ │ ├── MSIDCredentialHeader.m │ │ │ ├── MSIDCredentialInfo.h │ │ │ ├── MSIDCredentialInfo.m │ │ │ ├── MSIDDeviceHeader.h │ │ │ ├── MSIDDeviceHeader.m │ │ │ ├── MSIDPrtHeader.h │ │ │ └── MSIDPrtHeader.m │ ├── cache │ │ ├── MSIDCacheAccessor.h │ │ ├── MSIDCacheConfig.h │ │ ├── MSIDCacheConfig.m │ │ ├── MSIDCachedNonce.h │ │ ├── MSIDCachedNonce.m │ │ ├── MSIDExtendedTokenCacheDataSource.h │ │ ├── MSIDKeychainTokenCache+Internal.h │ │ ├── MSIDKeychainTokenCache.h │ │ ├── MSIDKeychainTokenCache.m │ │ ├── MSIDMacTokenCache.h │ │ ├── MSIDMacTokenCache.m │ │ ├── MSIDTokenCacheDataSource.h │ │ ├── MSIDUserInformation.h │ │ ├── MSIDUserInformation.m │ │ ├── accessor │ │ │ ├── MSIDAccountCredentialCache.h │ │ │ ├── MSIDAccountCredentialCache.m │ │ │ ├── MSIDDefaultTokenCacheAccessor.h │ │ │ ├── MSIDDefaultTokenCacheAccessor.m │ │ │ ├── MSIDLegacyTokenCacheAccessor.h │ │ │ ├── MSIDLegacyTokenCacheAccessor.m │ │ │ ├── MSIDTokenFilteringHelper.h │ │ │ └── MSIDTokenFilteringHelper.m │ │ ├── crypto │ │ │ ├── MSIDAssymetricKeyGenerating.h │ │ │ ├── MSIDAssymetricKeyGeneratorFactory.h │ │ │ ├── MSIDAssymetricKeyGeneratorFactory.m │ │ │ ├── MSIDAssymetricKeyKeychainGenerator.h │ │ │ ├── MSIDAssymetricKeyKeychainGenerator.m │ │ │ ├── MSIDAssymetricKeyLookupAttributes.h │ │ │ ├── MSIDAssymetricKeyLookupAttributes.m │ │ │ ├── MSIDAssymetricKeyPair.h │ │ │ ├── MSIDAssymetricKeyPair.m │ │ │ ├── MSIDAssymetricKeyPairWithCert.h │ │ │ ├── MSIDAssymetricKeyPairWithCert.m │ │ │ ├── MSIDSymmetricKey.h │ │ │ ├── MSIDSymmetricKey.m │ │ │ ├── MSIDWPJKeyPairWithCert.h │ │ │ ├── MSIDWPJKeyPairWithCert.m │ │ │ └── mac │ │ │ │ ├── MSIDAssymetricKeyLoginKeychainGenerator.h │ │ │ │ └── MSIDAssymetricKeyLoginKeychainGenerator.m │ │ ├── key │ │ │ ├── MSIDAppMetadataCacheKey.h │ │ │ ├── MSIDAppMetadataCacheKey.m │ │ │ ├── MSIDAppMetadataCacheQuery.h │ │ │ ├── MSIDAppMetadataCacheQuery.m │ │ │ ├── MSIDCacheKey.h │ │ │ ├── MSIDCacheKey.m │ │ │ ├── MSIDDefaultAccountCacheKey.h │ │ │ ├── MSIDDefaultAccountCacheKey.m │ │ │ ├── MSIDDefaultAccountCacheQuery.h │ │ │ ├── MSIDDefaultAccountCacheQuery.m │ │ │ ├── MSIDDefaultCredentialCacheKey.h │ │ │ ├── MSIDDefaultCredentialCacheKey.m │ │ │ ├── MSIDDefaultCredentialCacheQuery.h │ │ │ ├── MSIDDefaultCredentialCacheQuery.m │ │ │ ├── MSIDLegacyTokenCacheKey.h │ │ │ ├── MSIDLegacyTokenCacheKey.m │ │ │ ├── MSIDLegacyTokenCacheQuery.h │ │ │ └── MSIDLegacyTokenCacheQuery.m │ │ ├── mac │ │ │ ├── MSIDMacACLKeychainAccessor.h │ │ │ ├── MSIDMacACLKeychainAccessor.m │ │ │ ├── MSIDMacCredentialStorageItem.h │ │ │ ├── MSIDMacCredentialStorageItem.m │ │ │ ├── MSIDMacKeychainTokenCache.h │ │ │ ├── MSIDMacKeychainTokenCache.m │ │ │ ├── MSIDMacLegacyCachePersistenceHandler.h │ │ │ └── MSIDMacLegacyCachePersistenceHandler.m │ │ ├── metadata │ │ │ ├── MSIDAccountMetadataCacheAccessor.h │ │ │ ├── MSIDAccountMetadataCacheAccessor.m │ │ │ ├── MSIDMetadataCache.h │ │ │ ├── MSIDMetadataCache.m │ │ │ ├── MSIDMetadataCacheDataSource.h │ │ │ └── accountMetadata │ │ │ │ ├── MSIDAccountMetadata.h │ │ │ │ ├── MSIDAccountMetadata.m │ │ │ │ ├── MSIDAccountMetadataCacheItem.h │ │ │ │ ├── MSIDAccountMetadataCacheItem.m │ │ │ │ ├── MSIDAccountMetadataCacheKey.h │ │ │ │ └── MSIDAccountMetadataCacheKey.m │ │ ├── serializers │ │ │ ├── MSIDCacheItemJsonSerializer.h │ │ │ ├── MSIDCacheItemJsonSerializer.m │ │ │ ├── MSIDCacheItemSerializing.h │ │ │ ├── MSIDExtendedCacheItemSerializing.h │ │ │ ├── MSIDKeyedArchiverSerializer.h │ │ │ └── MSIDKeyedArchiverSerializer.m │ │ └── token │ │ │ ├── MSIDAccountCacheItem.h │ │ │ ├── MSIDAccountCacheItem.m │ │ │ ├── MSIDAppMetadataCacheItem.h │ │ │ ├── MSIDAppMetadataCacheItem.m │ │ │ ├── MSIDBoundRefreshTokenCacheItem.h │ │ │ ├── MSIDBoundRefreshTokenCacheItem.m │ │ │ ├── MSIDCredentialCacheItem+MSIDBaseToken.h │ │ │ ├── MSIDCredentialCacheItem+MSIDBaseToken.m │ │ │ ├── MSIDCredentialCacheItem.h │ │ │ ├── MSIDCredentialCacheItem.m │ │ │ ├── MSIDKeyGenerator.h │ │ │ ├── MSIDLegacyTokenCacheItem.h │ │ │ ├── MSIDLegacyTokenCacheItem.m │ │ │ ├── MSIDPRTCacheItem.h │ │ │ ├── MSIDPRTCacheItem.m │ │ │ └── Matchers │ │ │ ├── MSIDAccountCacheItem+MSIDAccountMatchers.h │ │ │ └── MSIDAccountCacheItem+MSIDAccountMatchers.m │ ├── claims │ │ ├── MSIDClaimsRequest+ClientCapabilities.h │ │ ├── MSIDClaimsRequest+ClientCapabilities.m │ │ ├── MSIDClaimsRequest.h │ │ ├── MSIDClaimsRequest.m │ │ ├── MSIDIndividualClaimRequest.h │ │ ├── MSIDIndividualClaimRequest.m │ │ ├── MSIDIndividualClaimRequestAdditionalInfo.h │ │ └── MSIDIndividualClaimRequestAdditionalInfo.m │ ├── configuration │ │ ├── MSIDConfiguration.h │ │ ├── MSIDConfiguration.m │ │ └── webview │ │ │ ├── MSIDAuthorizeWebRequestConfiguration.h │ │ │ ├── MSIDAuthorizeWebRequestConfiguration.m │ │ │ ├── MSIDBaseWebRequestConfiguration.h │ │ │ ├── MSIDBaseWebRequestConfiguration.m │ │ │ ├── MSIDSignoutWebRequestConfiguration.h │ │ │ └── MSIDSignoutWebRequestConfiguration.m │ ├── controllers │ │ ├── MSIDBaseRequestController.h │ │ ├── MSIDBaseRequestController.m │ │ ├── MSIDLocalInteractiveController+Internal.h │ │ ├── MSIDLocalInteractiveController.h │ │ ├── MSIDLocalInteractiveController.m │ │ ├── MSIDRequestControllerFactory.h │ │ ├── MSIDRequestControllerFactory.m │ │ ├── MSIDRequestControlling.h │ │ ├── MSIDSignoutController.h │ │ ├── MSIDSignoutController.m │ │ ├── MSIDSilentController+Internal.h │ │ ├── MSIDSilentController.h │ │ ├── MSIDSilentController.m │ │ └── broker │ │ │ ├── MSIDSSOExtensionInteractiveTokenRequestController.h │ │ │ ├── MSIDSSOExtensionInteractiveTokenRequestController.m │ │ │ ├── MSIDSSOExtensionSignoutController.h │ │ │ ├── MSIDSSOExtensionSignoutController.m │ │ │ ├── MSIDSSOExtensionSilentTokenRequestController.h │ │ │ ├── MSIDSSOExtensionSilentTokenRequestController.m │ │ │ ├── ios │ │ │ ├── MSIDBrokerInteractiveController.h │ │ │ └── MSIDBrokerInteractiveController.m │ │ │ └── mac │ │ │ ├── MSIDXpcInteractiveTokenRequestController.h │ │ │ ├── MSIDXpcInteractiveTokenRequestController.m │ │ │ ├── MSIDXpcSilentTokenRequestController.h │ │ │ └── MSIDXpcSilentTokenRequestController.m │ ├── intune │ │ ├── MSIDIntuneApplicationStateManager.h │ │ ├── MSIDIntuneApplicationStateManager.m │ │ ├── MSIDIntuneEnrollmentIdsCache.h │ │ ├── MSIDIntuneEnrollmentIdsCache.m │ │ ├── MSIDIntuneMAMResourcesCache.h │ │ ├── MSIDIntuneMAMResourcesCache.m │ │ └── data_source │ │ │ ├── MSIDIntuneCacheDataSource.h │ │ │ ├── MSIDIntuneInMemoryCacheDataSource.h │ │ │ ├── MSIDIntuneInMemoryCacheDataSource.m │ │ │ ├── MSIDIntuneUserDefaultsCacheDataSource.h │ │ │ └── MSIDIntuneUserDefaultsCacheDataSource.m │ ├── logger │ │ ├── MSIDLogger+Internal.h │ │ ├── MSIDLogger+Trace.h │ │ ├── MSIDLogger.h │ │ ├── MSIDLogger.m │ │ ├── MSIDLoggerConnecting.h │ │ ├── MSIDMaskedHashableLogParameter.h │ │ ├── MSIDMaskedHashableLogParameter.m │ │ ├── MSIDMaskedLogParameter.h │ │ ├── MSIDMaskedLogParameter.m │ │ ├── MSIDMaskedUsernameLogParameter.h │ │ └── MSIDMaskedUsernameLogParameter.m │ ├── network │ │ ├── MSIDAADEndpointProvider.h │ │ ├── MSIDAADEndpointProvider.m │ │ ├── MSIDAADEndpointProviding.h │ │ ├── MSIDHttpRequest.h │ │ ├── MSIDHttpRequest.m │ │ ├── MSIDHttpRequestProtocol.h │ │ ├── MSIDURLSessionManager.h │ │ ├── MSIDURLSessionManager.m │ │ ├── error_handler │ │ │ ├── MSIDAADRequestErrorHandler.h │ │ │ ├── MSIDAADRequestErrorHandler.m │ │ │ └── MSIDHttpRequestErrorHandling.h │ │ ├── request │ │ │ ├── MSIDAADAuthorityMetadataRequest.h │ │ │ ├── MSIDAADAuthorityMetadataRequest.m │ │ │ ├── MSIDAADAuthorityMetadataResponse.h │ │ │ ├── MSIDAADAuthorityMetadataResponse.m │ │ │ ├── MSIDAADAuthorityMetadataResponseSerializer.h │ │ │ ├── MSIDAADAuthorityMetadataResponseSerializer.m │ │ │ ├── MSIDAADAuthorityValidationRequest.h │ │ │ ├── MSIDAADAuthorityValidationRequest.m │ │ │ ├── MSIDAADAuthorizationCodeGrantRequest.h │ │ │ ├── MSIDAADAuthorizationCodeGrantRequest.m │ │ │ ├── MSIDAADAuthorizationCodeRequest.h │ │ │ ├── MSIDAADAuthorizationCodeRequest.m │ │ │ ├── MSIDAADOpenIdConfigurationInfoResponseSerializer.h │ │ │ ├── MSIDAADOpenIdConfigurationInfoResponseSerializer.m │ │ │ ├── MSIDAADRefreshTokenGrantRequest.h │ │ │ ├── MSIDAADRefreshTokenGrantRequest.m │ │ │ ├── MSIDAADV1AuthorizationCodeRequest.h │ │ │ ├── MSIDAADV1AuthorizationCodeRequest.m │ │ │ ├── MSIDAADV1RefreshTokenGrantRequest.h │ │ │ ├── MSIDAADV1RefreshTokenGrantRequest.m │ │ │ ├── MSIDAuthorizationCodeGrantRequest.h │ │ │ ├── MSIDAuthorizationCodeGrantRequest.m │ │ │ ├── MSIDDRSDiscoveryRequest.h │ │ │ ├── MSIDDRSDiscoveryRequest.m │ │ │ ├── MSIDDRSDiscoveryResponseSerializer.h │ │ │ ├── MSIDDRSDiscoveryResponseSerializer.m │ │ │ ├── MSIDNonceHttpRequest.h │ │ │ ├── MSIDNonceHttpRequest.m │ │ │ ├── MSIDOpenIdConfigurationInfoRequest.h │ │ │ ├── MSIDOpenIdConfigurationInfoRequest.m │ │ │ ├── MSIDRefreshTokenGrantRequest.h │ │ │ ├── MSIDRefreshTokenGrantRequest.m │ │ │ ├── MSIDTokenRequest.h │ │ │ ├── MSIDTokenRequest.m │ │ │ ├── MSIDUrlResponse.h │ │ │ ├── MSIDUrlResponse.m │ │ │ ├── MSIDUrlResponseSerializer.h │ │ │ ├── MSIDUrlResponseSerializer.m │ │ │ ├── MSIDWebFingerRequest.h │ │ │ └── MSIDWebFingerRequest.m │ │ ├── request_configurator │ │ │ ├── MSIDAADRequestConfigurator.h │ │ │ ├── MSIDAADRequestConfigurator.m │ │ │ ├── MSIDHttpRequestConfiguratorProtocol.h │ │ │ ├── MSIDOAuthRequestConfigurator.h │ │ │ └── MSIDOAuthRequestConfigurator.m │ │ ├── request_serializer │ │ │ ├── MSIDRequestSerialization.h │ │ │ ├── MSIDUrlRequestSerializer.h │ │ │ └── MSIDUrlRequestSerializer.m │ │ ├── request_server_telemetry │ │ │ ├── MSIDAADTokenRequestServerTelemetry.h │ │ │ ├── MSIDAADTokenRequestServerTelemetry.m │ │ │ └── MSIDHttpRequestServerTelemetryHandling.h │ │ ├── request_telemetry │ │ │ ├── MSIDHttpRequestTelemetry.h │ │ │ ├── MSIDHttpRequestTelemetry.m │ │ │ └── MSIDHttpRequestTelemetryHandling.h │ │ ├── response_serializer │ │ │ ├── MSIDAADTokenResponseSerializer.h │ │ │ ├── MSIDAADTokenResponseSerializer.m │ │ │ ├── MSIDHttpResponseSerializer.h │ │ │ ├── MSIDHttpResponseSerializer.m │ │ │ ├── MSIDResponseSerialization.h │ │ │ ├── MSIDTokenResponseSerializer.h │ │ │ ├── MSIDTokenResponseSerializer.m │ │ │ └── preprocessor │ │ │ │ ├── MSIDAADJsonResponsePreprocessor.h │ │ │ │ ├── MSIDAADJsonResponsePreprocessor.m │ │ │ │ ├── MSIDJsonResponsePreprocessor.h │ │ │ │ └── MSIDJsonResponsePreprocessor.m │ │ └── session_delegate │ │ │ ├── MSIDURLSessionDelegate.h │ │ │ └── MSIDURLSessionDelegate.m │ ├── oauth2 │ │ ├── MSIDBrokerResponse+Internal.h │ │ ├── MSIDBrokerResponse.h │ │ ├── MSIDBrokerResponse.m │ │ ├── MSIDExternalSSOContext.h │ │ ├── MSIDExternalSSOContext.m │ │ ├── MSIDIdTokenClaims.h │ │ ├── MSIDIdTokenClaims.m │ │ ├── MSIDOauth2Factory+Internal.h │ │ ├── MSIDOauth2Factory.h │ │ ├── MSIDOauth2Factory.m │ │ ├── MSIDTokenResponse+Internal.h │ │ ├── MSIDTokenResponse.h │ │ ├── MSIDTokenResponse.m │ │ ├── MSIDWebviewFactory.h │ │ ├── MSIDWebviewFactory.m │ │ ├── aad_base │ │ │ ├── MSIDAADIdTokenClaimsFactory.h │ │ │ ├── MSIDAADIdTokenClaimsFactory.m │ │ │ ├── MSIDAADOauth2Factory.h │ │ │ ├── MSIDAADOauth2Factory.m │ │ │ ├── MSIDAADTokenResponse.h │ │ │ ├── MSIDAADTokenResponse.m │ │ │ ├── MSIDAADWebviewFactory.h │ │ │ ├── MSIDAADWebviewFactory.m │ │ │ ├── MSIDClientInfo.h │ │ │ └── MSIDClientInfo.m │ │ ├── aad_v1 │ │ │ ├── MSIDAADV1BrokerResponse.h │ │ │ ├── MSIDAADV1BrokerResponse.m │ │ │ ├── MSIDAADV1IdTokenClaims.h │ │ │ ├── MSIDAADV1IdTokenClaims.m │ │ │ ├── MSIDAADV1Oauth2Factory.h │ │ │ ├── MSIDAADV1Oauth2Factory.m │ │ │ ├── MSIDAADV1TokenResponse.h │ │ │ ├── MSIDAADV1TokenResponse.m │ │ │ ├── MSIDAADV1WebviewFactory.h │ │ │ └── MSIDAADV1WebviewFactory.m │ │ ├── aad_v2 │ │ │ ├── MSIDAADV2BrokerResponse.h │ │ │ ├── MSIDAADV2BrokerResponse.m │ │ │ ├── MSIDAADV2IdTokenClaims.h │ │ │ ├── MSIDAADV2IdTokenClaims.m │ │ │ ├── MSIDAADV2Oauth2Factory.h │ │ │ ├── MSIDAADV2Oauth2Factory.m │ │ │ ├── MSIDAADV2Oauth2FactoryForV1Request.h │ │ │ ├── MSIDAADV2Oauth2FactoryForV1Request.m │ │ │ ├── MSIDAADV2TokenResponse.h │ │ │ ├── MSIDAADV2TokenResponse.m │ │ │ ├── MSIDAADV2TokenResponseForV1Request.h │ │ │ ├── MSIDAADV2TokenResponseForV1Request.m │ │ │ ├── MSIDAADV2WebviewFactory.h │ │ │ └── MSIDAADV2WebviewFactory.m │ │ ├── account │ │ │ ├── MSIDAccount.h │ │ │ ├── MSIDAccount.m │ │ │ ├── MSIDAccountIdentifier.h │ │ │ ├── MSIDAccountIdentifier.m │ │ │ ├── MSIDAccountType.h │ │ │ └── MSIDAccountType.m │ │ ├── appmetadata │ │ │ ├── MSIDGeneralCacheItemType.h │ │ │ └── MSIDGeneralCacheItemType.m │ │ ├── b2c │ │ │ ├── MSIDB2CIdTokenClaims.h │ │ │ ├── MSIDB2CIdTokenClaims.m │ │ │ ├── MSIDB2COauth2Factory.h │ │ │ ├── MSIDB2COauth2Factory.m │ │ │ ├── MSIDB2CTokenResponse.h │ │ │ └── MSIDB2CTokenResponse.m │ │ ├── ciam │ │ │ ├── MSIDCIAMOauth2Factory.h │ │ │ ├── MSIDCIAMOauth2Factory.m │ │ │ ├── MSIDCIAMTokenResponse.h │ │ │ └── MSIDCIAMTokenResponse.m │ │ └── token │ │ │ ├── MSIDAccessToken.h │ │ │ ├── MSIDAccessToken.m │ │ │ ├── MSIDAccessTokenWithAuthScheme.h │ │ │ ├── MSIDAccessTokenWithAuthScheme.m │ │ │ ├── MSIDBaseToken.h │ │ │ ├── MSIDBaseToken.m │ │ │ ├── MSIDBoundRefreshToken+Redemption.h │ │ │ ├── MSIDBoundRefreshToken+Redemption.m │ │ │ ├── MSIDBoundRefreshToken.h │ │ │ ├── MSIDBoundRefreshToken.m │ │ │ ├── MSIDCredentialType.h │ │ │ ├── MSIDCredentialType.m │ │ │ ├── MSIDFamilyRefreshToken.h │ │ │ ├── MSIDFamilyRefreshToken.m │ │ │ ├── MSIDIdToken.h │ │ │ ├── MSIDIdToken.m │ │ │ ├── MSIDLegacyAccessToken.h │ │ │ ├── MSIDLegacyAccessToken.m │ │ │ ├── MSIDLegacyRefreshToken.h │ │ │ ├── MSIDLegacyRefreshToken.m │ │ │ ├── MSIDLegacySingleResourceToken.h │ │ │ ├── MSIDLegacySingleResourceToken.m │ │ │ ├── MSIDPrimaryRefreshToken.h │ │ │ ├── MSIDPrimaryRefreshToken.m │ │ │ ├── MSIDRefreshToken.h │ │ │ ├── MSIDRefreshToken.m │ │ │ ├── MSIDV1IdToken.h │ │ │ ├── MSIDV1IdToken.m │ │ │ └── protocols │ │ │ ├── MSIDLegacyCredentialCacheCompatible.h │ │ │ └── MSIDRefreshableToken.h │ ├── parameters │ │ ├── MSIDBoundRefreshTokenRedemptionParameters.h │ │ ├── MSIDBoundRefreshTokenRedemptionParameters.m │ │ ├── MSIDBrokerInvocationOptions.h │ │ ├── MSIDBrokerInvocationOptions.m │ │ ├── MSIDInteractiveRequestParameters.h │ │ ├── MSIDInteractiveRequestParameters.m │ │ ├── MSIDInteractiveTokenRequestParameters.h │ │ ├── MSIDInteractiveTokenRequestParameters.m │ │ ├── MSIDRequestParameters+Broker.h │ │ ├── MSIDRequestParameters+Broker.m │ │ ├── MSIDRequestParameters+Internal.h │ │ ├── MSIDRequestParameters.h │ │ └── MSIDRequestParameters.m │ ├── pop_manager │ │ ├── MSIDDevicePopManager.h │ │ └── MSIDDevicePopManager.m │ ├── requests │ │ ├── MSIDAuthorizationCodeResult.h │ │ ├── MSIDAuthorizationCodeResult.m │ │ ├── MSIDEcdhApv.h │ │ ├── MSIDEcdhApv.m │ │ ├── MSIDInteractiveAuthorizationCodeRequest.h │ │ ├── MSIDInteractiveAuthorizationCodeRequest.m │ │ ├── MSIDInteractiveRequestControlling.h │ │ ├── MSIDInteractiveTokenRequest+Internal.h │ │ ├── MSIDInteractiveTokenRequest.h │ │ ├── MSIDInteractiveTokenRequest.m │ │ ├── MSIDJWECrypto.h │ │ ├── MSIDJWECrypto.m │ │ ├── MSIDNonceTokenRequest.h │ │ ├── MSIDNonceTokenRequest.m │ │ ├── MSIDOIDCSignoutRequest.h │ │ ├── MSIDOIDCSignoutRequest.m │ │ ├── MSIDSilentTokenRequest+Internal.h │ │ ├── MSIDSilentTokenRequest.h │ │ ├── MSIDSilentTokenRequest.m │ │ ├── MSIDTokenResponseHandler.h │ │ ├── MSIDTokenResponseHandler.m │ │ ├── broker │ │ │ ├── MSIDBrokerCryptoProvider.h │ │ │ ├── MSIDBrokerCryptoProvider.m │ │ │ ├── MSIDBrokerKeyProvider.h │ │ │ ├── MSIDBrokerKeyProvider.m │ │ │ ├── MSIDBrokerTokenRequest.h │ │ │ ├── MSIDBrokerTokenRequest.m │ │ │ ├── MSIDGCDStarvationDetector.h │ │ │ ├── MSIDGCDStarvationDetector.m │ │ │ ├── MSIDSSOExtensionGetAccountsRequest.h │ │ │ ├── MSIDSSOExtensionGetAccountsRequest.m │ │ │ ├── MSIDSSOExtensionGetDataBaseRequest+Internal.h │ │ │ ├── MSIDSSOExtensionGetDataBaseRequest.h │ │ │ ├── MSIDSSOExtensionGetDataBaseRequest.m │ │ │ ├── MSIDSSOExtensionGetDeviceInfoRequest.h │ │ │ ├── MSIDSSOExtensionGetDeviceInfoRequest.m │ │ │ ├── MSIDSSOExtensionGetSsoCookiesRequest.h │ │ │ ├── MSIDSSOExtensionGetSsoCookiesRequest.m │ │ │ ├── MSIDSSOExtensionInteractiveTokenRequest.h │ │ │ ├── MSIDSSOExtensionInteractiveTokenRequest.m │ │ │ ├── MSIDSSOExtensionOperationRequestDelegate.h │ │ │ ├── MSIDSSOExtensionOperationRequestDelegate.m │ │ │ ├── MSIDSSOExtensionPasskeyAssertionRequest.h │ │ │ ├── MSIDSSOExtensionPasskeyAssertionRequest.m │ │ │ ├── MSIDSSOExtensionPasskeyCredentialRequest.h │ │ │ ├── MSIDSSOExtensionPasskeyCredentialRequest.m │ │ │ ├── MSIDSSOExtensionRequestDelegate+Internal.h │ │ │ ├── MSIDSSOExtensionRequestDelegate.h │ │ │ ├── MSIDSSOExtensionRequestDelegate.m │ │ │ ├── MSIDSSOExtensionSignoutRequest.h │ │ │ ├── MSIDSSOExtensionSignoutRequest.m │ │ │ ├── MSIDSSOExtensionSilentTokenRequest.h │ │ │ ├── MSIDSSOExtensionSilentTokenRequest.m │ │ │ ├── MSIDSSOExtensionTokenRequestDelegate.h │ │ │ ├── MSIDSSOExtensionTokenRequestDelegate.m │ │ │ ├── MSIDSSORemoteInteractiveTokenRequest.h │ │ │ ├── MSIDSSORemoteInteractiveTokenRequest.m │ │ │ ├── MSIDSSORemoteSilentTokenRequest.h │ │ │ ├── MSIDSSORemoteSilentTokenRequest.m │ │ │ ├── MSIDSSOTokenResponseHandler.h │ │ │ ├── MSIDSSOTokenResponseHandler.m │ │ │ └── mac │ │ │ │ ├── MSIDSSOXpcInteractiveTokenRequest.h │ │ │ │ ├── MSIDSSOXpcInteractiveTokenRequest.m │ │ │ │ ├── MSIDSSOXpcSilentTokenRequest.h │ │ │ │ └── MSIDSSOXpcSilentTokenRequest.m │ │ ├── result │ │ │ ├── MSIDTokenResult.h │ │ │ └── MSIDTokenResult.m │ │ └── sdk │ │ │ ├── MSIDBrokerResponseHandler+Internal.h │ │ │ ├── MSIDBrokerResponseHandler.h │ │ │ ├── MSIDBrokerResponseHandler.m │ │ │ ├── MSIDTokenRequestProviding.h │ │ │ ├── MSIDTokenResponseValidator.h │ │ │ ├── MSIDTokenResponseValidator.m │ │ │ ├── adal │ │ │ ├── MSIDLegacyBrokerResponseHandler.h │ │ │ ├── MSIDLegacyBrokerResponseHandler.m │ │ │ ├── MSIDLegacyBrokerTokenRequest.h │ │ │ ├── MSIDLegacyBrokerTokenRequest.m │ │ │ ├── MSIDLegacySilentTokenRequest.h │ │ │ ├── MSIDLegacySilentTokenRequest.m │ │ │ ├── MSIDLegacyTokenRequestProvider.h │ │ │ ├── MSIDLegacyTokenRequestProvider.m │ │ │ ├── MSIDLegacyTokenResponseValidator.h │ │ │ └── MSIDLegacyTokenResponseValidator.m │ │ │ └── msal │ │ │ ├── MSIDDefaultBrokerResponseHandler.h │ │ │ ├── MSIDDefaultBrokerResponseHandler.m │ │ │ ├── MSIDDefaultBrokerTokenRequest.h │ │ │ ├── MSIDDefaultBrokerTokenRequest.m │ │ │ ├── MSIDDefaultSilentTokenRequest.h │ │ │ ├── MSIDDefaultSilentTokenRequest.m │ │ │ ├── MSIDDefaultTokenRequestProvider+Internal.h │ │ │ ├── MSIDDefaultTokenRequestProvider.h │ │ │ ├── MSIDDefaultTokenRequestProvider.m │ │ │ ├── MSIDDefaultTokenResponseValidator.h │ │ │ └── MSIDDefaultTokenResponseValidator.m │ ├── telemetry │ │ ├── MSIDAggregatedDispatcher.h │ │ ├── MSIDAggregatedDispatcher.m │ │ ├── MSIDDefaultDispatcher+Internal.h │ │ ├── MSIDDefaultDispatcher.h │ │ ├── MSIDDefaultDispatcher.m │ │ ├── MSIDGetV1IdTokenCacheEvent.h │ │ ├── MSIDGetV1IdTokenCacheEvent.m │ │ ├── MSIDGetV1IdTokenHttpEvent.h │ │ ├── MSIDGetV1IdTokenHttpEvent.m │ │ ├── MSIDTelemetry+Cache.h │ │ ├── MSIDTelemetry+Cache.m │ │ ├── MSIDTelemetry+Internal.h │ │ ├── MSIDTelemetry.h │ │ ├── MSIDTelemetry.m │ │ ├── MSIDTelemetryAPIEvent.h │ │ ├── MSIDTelemetryAPIEvent.m │ │ ├── MSIDTelemetryAuthorityValidationEvent.h │ │ ├── MSIDTelemetryAuthorityValidationEvent.m │ │ ├── MSIDTelemetryBaseEvent.h │ │ ├── MSIDTelemetryBaseEvent.m │ │ ├── MSIDTelemetryBrokerEvent.h │ │ ├── MSIDTelemetryBrokerEvent.m │ │ ├── MSIDTelemetryCacheEvent.h │ │ ├── MSIDTelemetryCacheEvent.m │ │ ├── MSIDTelemetryConditionalCompile.h │ │ ├── MSIDTelemetryDefaultEvent.h │ │ ├── MSIDTelemetryDefaultEvent.m │ │ ├── MSIDTelemetryDispatcher.h │ │ ├── MSIDTelemetryEventInterface.h │ │ ├── MSIDTelemetryEventStrings.h │ │ ├── MSIDTelemetryEventStrings.m │ │ ├── MSIDTelemetryEventsObserving.h │ │ ├── MSIDTelemetryHttpEvent.h │ │ ├── MSIDTelemetryHttpEvent.m │ │ ├── MSIDTelemetryPiiOiiRules.h │ │ ├── MSIDTelemetryPiiOiiRules.m │ │ ├── MSIDTelemetryUIEvent.h │ │ ├── MSIDTelemetryUIEvent.m │ │ └── request_telemetry │ │ │ ├── MSIDCurrentRequestTelemetry.h │ │ │ ├── MSIDCurrentRequestTelemetry.m │ │ │ ├── MSIDCurrentRequestTelemetrySerializedItem+Internal.h │ │ │ ├── MSIDCurrentRequestTelemetrySerializedItem.h │ │ │ ├── MSIDCurrentRequestTelemetrySerializedItem.m │ │ │ ├── MSIDLastRequestTelemetry+Internal.h │ │ │ ├── MSIDLastRequestTelemetry.h │ │ │ ├── MSIDLastRequestTelemetry.m │ │ │ ├── MSIDLastRequestTelemetrySerializedItem.h │ │ │ ├── MSIDLastRequestTelemetrySerializedItem.m │ │ │ ├── MSIDRequestTelemetryConstants.h │ │ │ └── MSIDRequestTelemetryConstants.m │ ├── throttling │ │ ├── MSIDThrottlingService.h │ │ ├── MSIDThrottlingService.m │ │ ├── cache │ │ │ ├── MSIDLRUCache.h │ │ │ ├── MSIDLRUCache.m │ │ │ ├── MSIDThrottlingCacheRecord.h │ │ │ └── MSIDThrottlingCacheRecord.m │ │ ├── metadata │ │ │ ├── MSIDThrottlingMetaData.h │ │ │ ├── MSIDThrottlingMetaData.m │ │ │ ├── MSIDThrottlingMetaDataCache.h │ │ │ └── MSIDThrottlingMetaDataCache.m │ │ ├── model │ │ │ ├── MSIDThrottlingModel429.h │ │ │ ├── MSIDThrottlingModel429.m │ │ │ ├── MSIDThrottlingModelBase.h │ │ │ ├── MSIDThrottlingModelBase.m │ │ │ ├── MSIDThrottlingModelFactory.h │ │ │ ├── MSIDThrottlingModelFactory.m │ │ │ ├── MSIDThrottlingModelNonRecoverableServerError.h │ │ │ └── MSIDThrottlingModelNonRecoverableServerError.m │ │ └── thumbprint_calculation │ │ │ ├── MSIDThumbprintCalculatable.h │ │ │ ├── MSIDThumbprintCalculator.h │ │ │ └── MSIDThumbprintCalculator.m │ ├── util │ │ ├── ASAuthorizationController+MSIDExtensions.h │ │ ├── ASAuthorizationController+MSIDExtensions.m │ │ ├── ASAuthorizationSingleSignOnProvider+MSIDExtensions.h │ │ ├── ASAuthorizationSingleSignOnProvider+MSIDExtensions.m │ │ ├── MSIDAppExtensionUtil.h │ │ ├── MSIDAuthScheme.h │ │ ├── MSIDAuthScheme.m │ │ ├── MSIDBartFeatureUtil.h │ │ ├── MSIDBartFeatureUtil.m │ │ ├── MSIDHelpers.h │ │ ├── MSIDHelpers.m │ │ ├── MSIDJWTHelper.h │ │ ├── MSIDJWTHelper.m │ │ ├── MSIDJsonObject.h │ │ ├── MSIDJsonObject.m │ │ ├── MSIDJsonSerializable.h │ │ ├── MSIDKeyOperationUtil.h │ │ ├── MSIDKeyOperationUtil.m │ │ ├── MSIDKeychainUtil+Internal.h │ │ ├── MSIDKeychainUtil.h │ │ ├── MSIDPromptType.m │ │ ├── MSIDPromptType_Internal.h │ │ ├── MSIDRedirectUri.h │ │ ├── MSIDRedirectUri.m │ │ ├── MSIDRedirectUriVerifier.h │ │ ├── MSIDURLFormObject.h │ │ ├── MSIDURLFormObject.m │ │ ├── MSIDWebAuthNUtil.h │ │ ├── MSIDWebAuthNUtil.m │ │ ├── MSIDXpcIdentifierCache.h │ │ ├── NSBundle+MSIDExtensions.h │ │ ├── NSBundle+MSIDExtensions.m │ │ ├── NSData+JWT.h │ │ ├── NSData+JWT.m │ │ ├── NSData+MSIDAES.h │ │ ├── NSData+MSIDAES.m │ │ ├── NSData+MSIDExtensions.h │ │ ├── NSData+MSIDExtensions.m │ │ ├── NSDate+MSIDExtensions.h │ │ ├── NSDate+MSIDExtensions.m │ │ ├── NSDictionary+MSIDExtensions.h │ │ ├── NSDictionary+MSIDExtensions.m │ │ ├── NSDictionary+MSIDJsonSerializable.h │ │ ├── NSDictionary+MSIDJsonSerializable.m │ │ ├── NSDictionary+MSIDLogging.h │ │ ├── NSDictionary+MSIDLogging.m │ │ ├── NSDictionary+MSIDQueryItems.h │ │ ├── NSDictionary+MSIDQueryItems.m │ │ ├── NSError+MSIDExtensions.h │ │ ├── NSError+MSIDExtensions.m │ │ ├── NSError+MSIDServerTelemetryError.h │ │ ├── NSError+MSIDServerTelemetryError.m │ │ ├── NSError+MSIDThrottlingExtension.h │ │ ├── NSError+MSIDThrottlingExtension.m │ │ ├── NSJSONSerialization+MSIDExtensions.h │ │ ├── NSJSONSerialization+MSIDExtensions.m │ │ ├── NSKeyedArchiver+MSIDExtensions.h │ │ ├── NSKeyedArchiver+MSIDExtensions.m │ │ ├── NSKeyedUnarchiver+MSIDExtensions.h │ │ ├── NSKeyedUnarchiver+MSIDExtensions.m │ │ ├── NSMutableDictionary+MSIDExtensions.h │ │ ├── NSMutableDictionary+MSIDExtensions.m │ │ ├── NSOrderedSet+MSIDExtensions.h │ │ ├── NSOrderedSet+MSIDExtensions.m │ │ ├── NSString+MSIDExtensions.h │ │ ├── NSString+MSIDExtensions.m │ │ ├── NSString+MSIDTelemetryExtensions.h │ │ ├── NSString+MSIDTelemetryExtensions.m │ │ ├── NSURL+MSIDAADUtils.h │ │ ├── NSURL+MSIDAADUtils.m │ │ ├── NSURL+MSIDExtensions.h │ │ ├── NSURL+MSIDExtensions.m │ │ ├── ios │ │ │ ├── MSIDAppExtensionUtil.m │ │ │ ├── MSIDKeychainUtil.m │ │ │ ├── MSIDRedirectUriVerifier.m │ │ │ ├── UIApplication+MSIDExtensions.h │ │ │ └── UIApplication+MSIDExtensions.m │ │ └── mac │ │ │ ├── MSIDAppExtensionUtil.m │ │ │ ├── MSIDKeychainUtil+MacInternal.h │ │ │ ├── MSIDKeychainUtil.m │ │ │ ├── MSIDLoginKeychainUtil.h │ │ │ ├── MSIDLoginKeychainUtil.m │ │ │ ├── MSIDRedirectUriVerifier.m │ │ │ ├── MSIDXpcConfiguration.h │ │ │ ├── MSIDXpcConfiguration.m │ │ │ ├── MSIDXpcProviderCache.h │ │ │ ├── MSIDXpcProviderCache.m │ │ │ ├── MSIDXpcProviderCaching.h │ │ │ ├── MSIDXpcSingleSignOnProvider.h │ │ │ └── MSIDXpcSingleSignOnProvider.m │ ├── validation │ │ ├── MSIDAADAuthority.h │ │ ├── MSIDAADAuthority.m │ │ ├── MSIDAADTenant.h │ │ ├── MSIDAADTenant.m │ │ ├── MSIDADFSAuthority.h │ │ ├── MSIDADFSAuthority.m │ │ ├── MSIDAadAuthorityCache.h │ │ ├── MSIDAadAuthorityCache.m │ │ ├── MSIDAadAuthorityCacheRecord.h │ │ ├── MSIDAadAuthorityCacheRecord.m │ │ ├── MSIDAadAuthorityResolver.h │ │ ├── MSIDAadAuthorityResolver.m │ │ ├── MSIDAdfsAuthorityResolver.h │ │ ├── MSIDAdfsAuthorityResolver.m │ │ ├── MSIDAuthority+Internal.h │ │ ├── MSIDAuthority.h │ │ ├── MSIDAuthority.m │ │ ├── MSIDAuthorityCacheRecord.h │ │ ├── MSIDAuthorityCacheRecord.m │ │ ├── MSIDAuthorityFactory.h │ │ ├── MSIDAuthorityFactory.m │ │ ├── MSIDAuthorityResolving.h │ │ ├── MSIDB2CAuthority.h │ │ ├── MSIDB2CAuthority.m │ │ ├── MSIDB2CAuthorityResolver.h │ │ ├── MSIDB2CAuthorityResolver.m │ │ ├── MSIDCIAMAuthority.h │ │ ├── MSIDCIAMAuthority.m │ │ ├── MSIDCIAMAuthorityResolver.h │ │ ├── MSIDCIAMAuthorityResolver.m │ │ ├── MSIDOpenIdProviderMetadata.h │ │ └── MSIDOpenIdProviderMetadata.m │ ├── webview │ │ ├── MSIDCertAuthManager.h │ │ ├── MSIDCertAuthManager.m │ │ ├── MSIDMainThreadUtil.h │ │ ├── MSIDMainThreadUtil.m │ │ ├── MSIDWebviewAuthorization.h │ │ ├── MSIDWebviewAuthorization.m │ │ ├── MSIDWebviewInteracting.h │ │ ├── MSIDWebviewSession.h │ │ ├── MSIDWebviewSession.m │ │ ├── background │ │ │ └── ios │ │ │ │ ├── MSIDBackgroundTaskData.h │ │ │ │ ├── MSIDBackgroundTaskData.m │ │ │ │ ├── MSIDBackgroundTaskManager.h │ │ │ │ └── MSIDBackgroundTaskManager.m │ │ ├── embeddedWebview │ │ │ ├── MSIDAADOAuthEmbeddedWebviewController.h │ │ │ ├── MSIDAADOAuthEmbeddedWebviewController.m │ │ │ ├── MSIDOAuth2EmbeddedWebviewController.h │ │ │ ├── MSIDOAuth2EmbeddedWebviewController.m │ │ │ ├── challangeHandlers │ │ │ │ ├── MSIDCertAuthHandler.h │ │ │ │ ├── MSIDChallengeHandler.h │ │ │ │ ├── MSIDChallengeHandler.m │ │ │ │ ├── MSIDChallengeHandling.h │ │ │ │ ├── MSIDClientTLSHandler.h │ │ │ │ ├── MSIDClientTLSHandler.m │ │ │ │ ├── MSIDNTLMHandler.h │ │ │ │ ├── MSIDNTLMHandler.m │ │ │ │ ├── MSIDPKeyAuthHandler.h │ │ │ │ ├── MSIDPKeyAuthHandler.m │ │ │ │ ├── MSIDWPJChallengeHandler.h │ │ │ │ ├── MSIDWPJChallengeHandler.m │ │ │ │ ├── ios │ │ │ │ │ └── MSIDCertAuthHandler.m │ │ │ │ └── mac │ │ │ │ │ ├── MSIDCertAuthHandler.m │ │ │ │ │ ├── MSIDNegotiateHandler.h │ │ │ │ │ └── MSIDNegotiateHandler.m │ │ │ ├── customHeaderProviding │ │ │ │ └── MSIDCustomHeaderProviding.h │ │ │ └── ui │ │ │ │ ├── MSIDNTLMUIPrompt.h │ │ │ │ ├── MSIDWebViewPlatformParams.h │ │ │ │ ├── MSIDWebviewUIController.h │ │ │ │ ├── ios │ │ │ │ ├── MSIDNTLMUIPrompt.m │ │ │ │ ├── MSIDWebViewPlatformParams.m │ │ │ │ └── MSIDWebviewUIController.m │ │ │ │ └── mac │ │ │ │ ├── MSIDCertificateChooser.h │ │ │ │ ├── MSIDCertificateChooser.m │ │ │ │ ├── MSIDCredentialCollectionController.h │ │ │ │ ├── MSIDCredentialCollectionController.m │ │ │ │ ├── MSIDNTLMUIPrompt.m │ │ │ │ ├── MSIDWebViewPlatformParams.m │ │ │ │ └── MSIDWebviewUIController.m │ │ ├── operations │ │ │ ├── MSIDSwitchBrowserOperation.h │ │ │ ├── MSIDSwitchBrowserOperation.m │ │ │ ├── MSIDSwitchBrowserResumeOperation.h │ │ │ ├── MSIDSwitchBrowserResumeOperation.m │ │ │ ├── MSIDWebOAuth2AuthCodeOperation.h │ │ │ ├── MSIDWebOAuth2AuthCodeOperation.m │ │ │ ├── MSIDWebOpenBrowserResponseOperation.h │ │ │ ├── MSIDWebOpenBrowserResponseOperation.m │ │ │ ├── MSIDWebResponseBaseOperation.h │ │ │ ├── MSIDWebResponseBaseOperation.m │ │ │ ├── MSIDWebResponseOperationFactory.h │ │ │ ├── MSIDWebResponseOperationFactory.m │ │ │ ├── MSIDWebUpgradeRegOperation.h │ │ │ ├── MSIDWebUpgradeRegOperation.m │ │ │ ├── MSIDWebWPJOperation.h │ │ │ └── MSIDWebWPJOperation.m │ │ ├── pkce │ │ │ ├── MSIDPkce.h │ │ │ └── MSIDPkce.m │ │ ├── response │ │ │ ├── MSIDCBAWebAADAuthResponse.h │ │ │ ├── MSIDCBAWebAADAuthResponse.m │ │ │ ├── MSIDJITTroubleshootingResponse.h │ │ │ ├── MSIDJITTroubleshootingResponse.m │ │ │ ├── MSIDSwitchBrowserResponse.h │ │ │ ├── MSIDSwitchBrowserResponse.m │ │ │ ├── MSIDSwitchBrowserResumeResponse.h │ │ │ ├── MSIDSwitchBrowserResumeResponse.m │ │ │ ├── MSIDWebAADAuthCodeResponse.h │ │ │ ├── MSIDWebAADAuthCodeResponse.m │ │ │ ├── MSIDWebOAuth2AuthCodeResponse.h │ │ │ ├── MSIDWebOAuth2AuthCodeResponse.m │ │ │ ├── MSIDWebOAuth2Response.h │ │ │ ├── MSIDWebOAuth2Response.m │ │ │ ├── MSIDWebOpenBrowserResponse.h │ │ │ ├── MSIDWebOpenBrowserResponse.m │ │ │ ├── MSIDWebUpgradeRegResponse.h │ │ │ ├── MSIDWebUpgradeRegResponse.m │ │ │ ├── MSIDWebWPJResponse+Internal.h │ │ │ ├── MSIDWebWPJResponse.h │ │ │ ├── MSIDWebWPJResponse.m │ │ │ ├── MSIDWebviewResponse.h │ │ │ └── MSIDWebviewResponse.m │ │ └── systemWebview │ │ │ ├── ios │ │ │ ├── MSIDSafariViewController.h │ │ │ ├── MSIDSafariViewController.m │ │ │ └── MSIDURLResponseHandling.h │ │ │ └── session │ │ │ ├── MSIDASWebAuthenticationSessionHandler.h │ │ │ ├── MSIDASWebAuthenticationSessionHandler.m │ │ │ ├── MSIDSystemWebViewControllerFactory.h │ │ │ ├── MSIDSystemWebViewControllerFactory.m │ │ │ ├── MSIDSystemWebviewController.h │ │ │ └── MSIDSystemWebviewController.m │ └── workplacejoin │ │ ├── MSIDPkeyAuthHelper.h │ │ ├── MSIDPkeyAuthHelper.m │ │ ├── MSIDRegistrationInformation.h │ │ ├── MSIDRegistrationInformation.m │ │ ├── MSIDWPJMetadata.h │ │ ├── MSIDWPJMetadata.m │ │ ├── MSIDWorkPlaceJoinConstants.h │ │ ├── MSIDWorkPlaceJoinConstants.m │ │ ├── MSIDWorkPlaceJoinUtil.h │ │ ├── MSIDWorkPlaceJoinUtilBase+Internal.h │ │ ├── MSIDWorkPlaceJoinUtilBase.h │ │ ├── MSIDWorkPlaceJoinUtilBase.m │ │ ├── MSIDWorkplaceJoinChallenge.h │ │ ├── MSIDWorkplaceJoinChallenge.m │ │ ├── ios │ │ └── MSIDWorkPlaceJoinUtil.m │ │ └── mac │ │ └── MSIDWorkPlaceJoinUtil.m ├── tests │ ├── File.swift │ ├── IdentityCoreTests-Bridging-Header.h │ ├── MSIDAADAuthorityMetadataResponseSerializerTests.m │ ├── MSIDAADAuthorityTests.m │ ├── MSIDAADEndpointProviderTests.m │ ├── MSIDAADIdTokenClaimsFactoryTests.m │ ├── MSIDAADJsonResponsePreprocessorTests.m │ ├── MSIDAADOAuthEmbeddedWebviewControllerTests.m │ ├── MSIDAADOauth2FactoryTests.m │ ├── MSIDAADRequestConfiguratorTests.m │ ├── MSIDAADRequestErrorHandlerTests.m │ ├── MSIDAADTokenRequestServerTelemetryTests.m │ ├── MSIDAADTokenResponseTests.m │ ├── MSIDAADV1Oauth2FactoryTests.m │ ├── MSIDAADV1TokenResponseTests.m │ ├── MSIDAADV1WebviewFactoryTests.m │ ├── MSIDAADV2Oauth2FactoryTests.m │ ├── MSIDAADV2TokenResponseForV1RequestTests.m │ ├── MSIDAADV2TokenResponseTests.m │ ├── MSIDAADV2WebviewFactoryTests.m │ ├── MSIDAADWebviewFactoryTests.m │ ├── MSIDADFSAuthorityTests.m │ ├── MSIDAadAuthorityCacheTests.m │ ├── MSIDAccessTokenTests.m │ ├── MSIDAccountCacheItemTests.m │ ├── MSIDAccountCredentialsCacheTests.m │ ├── MSIDAccountIdentifierTests.m │ ├── MSIDAccountMetadataCacheAccessorTests.m │ ├── MSIDAccountMetadataCacheItemTests.m │ ├── MSIDAccountMetadataTests.m │ ├── MSIDAccountTests.m │ ├── MSIDAccountTypeTests.m │ ├── MSIDAppMetadataCacheKeyTests.m │ ├── MSIDAppMetadataCacheQueryTests.m │ ├── MSIDAssymetricKeyPair+Test.h │ ├── MSIDAssymetricKeyPair+Test.m │ ├── MSIDAssymetricKeychainGeneratorTests.m │ ├── MSIDAuthenticationSchemePopTest.m │ ├── MSIDAuthenticationSchemeSshCertTest.m │ ├── MSIDAuthenticationSchemeTest.m │ ├── MSIDAuthorityTests.m │ ├── MSIDB2CAuthorityTests.m │ ├── MSIDB2COauth2FactoryTests.m │ ├── MSIDBackgroundTaskManagerTests.m │ ├── MSIDBaseTokenTests.m │ ├── MSIDBoundRefreshTokenRedemptionTests.m │ ├── MSIDBoundRefreshTokenTests.m │ ├── MSIDBrokerFlightProviderTests.m │ ├── MSIDBrokerNativeAppOperationResponseTests.m │ ├── MSIDBrokerOperationBrowserNativeMessageMATSReportTests.m │ ├── MSIDBrokerOperationBrowserNativeMessageRequestTests.m │ ├── MSIDBrokerOperationBrowserNativeMessageResponseTests.m │ ├── MSIDBrokerOperationBrowserTokenRequestTests.m │ ├── MSIDBrokerOperationGetAccountsRequestTests.m │ ├── MSIDBrokerOperationGetAccountsResponseTests.m │ ├── MSIDBrokerOperationGetDeviceInfoRequestTests.m │ ├── MSIDBrokerOperationGetPasskeyAssertionResponseTests.m │ ├── MSIDBrokerOperationGetPasskeyCredentialResponseTests.m │ ├── MSIDBrokerOperationGetSsoCookiesRequestTests.m │ ├── MSIDBrokerOperationGetSsoCookiesResponseTests.m │ ├── MSIDBrokerOperationInteractiveTokenRequestTests.m │ ├── MSIDBrokerOperationPasskeyAssertionRequestTests.m │ ├── MSIDBrokerOperationPasskeyCredentialRequestTests.m │ ├── MSIDBrokerOperationRemoveAccountRequestTests.m │ ├── MSIDBrokerOperationRequestTests.m │ ├── MSIDBrokerOperationResponseTests.m │ ├── MSIDBrokerOperationSignoutFromDeviceRequestTests.m │ ├── MSIDBrokerOperationSilentTokenRequestTests.m │ ├── MSIDBrokerOperationTokenRequestTests.m │ ├── MSIDBrokerOperationTokenResponseTests.m │ ├── MSIDBrokerRedirectUriTest.m │ ├── MSIDBrowserNativeMessageGetCookiesRequestTests.m │ ├── MSIDBrowserNativeMessageGetCookiesResponseTests.m │ ├── MSIDBrowserNativeMessageGetSupportedContractsResponseTests.m │ ├── MSIDBrowserNativeMessageGetTokenRequestTests.m │ ├── MSIDBrowserNativeMessageGetTokenResponseTests.m │ ├── MSIDBrowserNativeMessageSignOutRequestTests.m │ ├── MSIDBrowserNativeMessageSignOutResponseTests.m │ ├── MSIDCBAWebAADAuthResponseTests.m │ ├── MSIDCIAMAuthorityTests.m │ ├── MSIDCIAMOauth2FactoryTests.m │ ├── MSIDCacheItemJsonSerializerTests.m │ ├── MSIDCacheKeyTests.m │ ├── MSIDCacheTests.m │ ├── MSIDClaimsRequestTests.m │ ├── MSIDClientInfoTests.m │ ├── MSIDCredentialCacheItemTests.m │ ├── MSIDCredentialTypeTests.m │ ├── MSIDCurrentRequestTelemetryTests.m │ ├── MSIDDRSDiscoveryResponseSerializerTests.m │ ├── MSIDDataExtensionsTests.m │ ├── MSIDDefaultAccountCacheKeyTests.m │ ├── MSIDDefaultAccountCacheQueryTests.m │ ├── MSIDDefaultCredentialCacheKeyTests.m │ ├── MSIDDefaultCredentialCacheQueryTests.m │ ├── MSIDDefaultTokenRequestProviderTests.m │ ├── MSIDDefaultTokenResponseValidatorTests.m │ ├── MSIDDeviceInfoTests.m │ ├── MSIDDevicePopManagerTest.m │ ├── MSIDDictionaryExtensionsTests.m │ ├── MSIDErrorExtensionsTests.m │ ├── MSIDErrorTests.m │ ├── MSIDFlightManagerTests.swift │ ├── MSIDHelperTests.m │ ├── MSIDHttpRequestTelemetryTests.m │ ├── MSIDIdTokenClaimsTests.m │ ├── MSIDIdTokenTests.m │ ├── MSIDInteractiveTokenRequestParametersTests.m │ ├── MSIDIntuneEnrollmentIdsCacheTests.m │ ├── MSIDIntuneMAMResourcesCacheTests.m │ ├── MSIDJITTroubleshootingResponseTests.m │ ├── MSIDJWECryptoTests.m │ ├── MSIDJsonObjectTests.m │ ├── MSIDJsonSerializableFactoryTests.m │ ├── MSIDKeyOperationUtilTest.m │ ├── MSIDKeyedArchiverSerializerTests.m │ ├── MSIDLRUCacheTest.m │ ├── MSIDLastRequestTelemetryTests.m │ ├── MSIDLegacyAccessTokenTests.m │ ├── MSIDLegacyCacheKeyTests.m │ ├── MSIDLegacyCacheQueryTests.m │ ├── MSIDLegacyRefreshTokenTests.m │ ├── MSIDLegacySingleResourceTokenTests.m │ ├── MSIDLegacyTokenCacheItemTests.m │ ├── MSIDLegacyTokenRequestProviderTests.m │ ├── MSIDLegacyTokenResponseValidatorTests.m │ ├── MSIDLoggerTests.m │ ├── MSIDMainThreadUtilTests.m │ ├── MSIDMaskedLogParameterTests.m │ ├── MSIDMaskedUsernameLogParameterTests.m │ ├── MSIDNonceTokenRequestTest.m │ ├── MSIDOAuth2EmbeddedWebviewControllerTests.m │ ├── MSIDOAuthRequestConfiguratorTests.m │ ├── MSIDOauth2FactoryTests.m │ ├── MSIDOpenIdConfigurationInfoResponseSerializerTests.m │ ├── MSIDOrderedSetExtensionsTests.m │ ├── MSIDPKeyAuthHandlerTests.m │ ├── MSIDPkceTests.m │ ├── MSIDPkeyAuthHelperTests.m │ ├── MSIDPrimaryRefreshTokenTests.m │ ├── MSIDRedirectUriVerifierTests.m │ ├── MSIDRefreshTokenTests.m │ ├── MSIDRequestControllerFactoryTests.m │ ├── MSIDRequestParametersTests.m │ ├── MSIDStringExtensionsTests.m │ ├── MSIDSwitchBrowserOperationTest.swift │ ├── MSIDSwitchBrowserResponseTest.swift │ ├── MSIDSwitchBrowserResumeOperationTest.swift │ ├── MSIDSwitchBrowserResumeResponseTest.swift │ ├── MSIDSymmetricKeyTests.m │ ├── MSIDSystemWebviewControllerTests.m │ ├── MSIDTelemetryCacheEventTests.m │ ├── MSIDTelemetryExtensionsTests.m │ ├── MSIDTelemetryUIEventTests.m │ ├── MSIDTestSecureEnclaveKeyPairGenerator.h │ ├── MSIDTestSecureEnclaveKeyPairGenerator.m │ ├── MSIDThrottlingServiceIntegrationTests.m │ ├── MSIDThumbprintCalculatorTests.m │ ├── MSIDTokenFilteringHelperTests.m │ ├── MSIDTokenResponseTests.m │ ├── MSIDURLExtensionsTests.m │ ├── MSIDURLFormObjectTests.m │ ├── MSIDURLSessionDelegateTests.m │ ├── MSIDUrlRequestSerializerTests.m │ ├── MSIDVersion.m │ ├── MSIDWebAADAuthResponseTests.m │ ├── MSIDWebMSAuthResponseTests.m │ ├── MSIDWebOAuth2ResponseTests.m │ ├── MSIDWebOpenBrowserResponseTests.m │ ├── MSIDWebviewAuthorizationTests.m │ ├── MSIDWebviewFactoryTests.m │ ├── MSIDWebviewResponseTests.m │ ├── MSIDWorkPlaceJoinUtilTests.m │ ├── automation │ │ ├── shared │ │ │ ├── MSIDAutomationAccountsResult.h │ │ │ ├── MSIDAutomationAccountsResult.m │ │ │ ├── MSIDAutomationActionConstants.h │ │ │ ├── MSIDAutomationActionConstants.m │ │ │ ├── MSIDAutomationErrorResult.h │ │ │ ├── MSIDAutomationErrorResult.m │ │ │ ├── MSIDAutomationSuccessResult.h │ │ │ ├── MSIDAutomationSuccessResult.m │ │ │ ├── MSIDAutomationTestRequest.h │ │ │ ├── MSIDAutomationTestRequest.m │ │ │ ├── MSIDAutomationTestResult.h │ │ │ ├── MSIDAutomationTestResult.m │ │ │ ├── MSIDAutomationUserInformation.h │ │ │ ├── MSIDAutomationUserInformation.m │ │ │ ├── NSString+MSIDAutomationUtils.h │ │ │ └── NSString+MSIDAutomationUtils.m │ │ ├── ui_app_lib │ │ │ ├── MSIDClearCookiesTestAction.h │ │ │ ├── MSIDClearCookiesTestAction.m │ │ │ ├── MSIDClearKeychainTestAction.h │ │ │ ├── MSIDOpenURLAction.h │ │ │ ├── ios │ │ │ │ ├── MSIDClearKeychainTestAction.m │ │ │ │ └── MSIDOpenURLAction.m │ │ │ ├── macos │ │ │ │ └── MSIDOpenURLAction.m │ │ │ └── ui_common │ │ │ │ ├── MSIDAutomation.h │ │ │ │ ├── MSIDAutomationActionManager.h │ │ │ │ ├── MSIDAutomationActionManager.m │ │ │ │ ├── MSIDAutomationMainViewController.h │ │ │ │ ├── MSIDAutomationPassedInWebViewController.h │ │ │ │ ├── MSIDAutomationRequestViewController.h │ │ │ │ ├── MSIDAutomationResultViewController.h │ │ │ │ ├── MSIDAutomationTestAction.h │ │ │ │ ├── ios │ │ │ │ ├── MSIDAutomationMainViewController.m │ │ │ │ ├── MSIDAutomationPassedInWebViewController.m │ │ │ │ ├── MSIDAutomationRequestViewController.m │ │ │ │ ├── MSIDAutomationResultViewController.m │ │ │ │ └── MainAutomation.storyboard │ │ │ │ └── macos │ │ │ │ ├── MSIDAutomationMainViewController.m │ │ │ │ ├── MSIDAutomationPassedInWebViewController.m │ │ │ │ ├── MSIDAutomationRequestViewController.m │ │ │ │ ├── MSIDAutomationResultViewController.m │ │ │ │ └── MainAutomation.storyboard │ │ └── ui_tests_lib │ │ │ ├── KeyvaultAuthentication.swift │ │ │ ├── MSIDAutomation-Bridging-Header.h │ │ │ ├── MSIDBaseUITest.h │ │ │ ├── MSIDBaseUITest.m │ │ │ ├── MSIDClientCredentialHelper.h │ │ │ ├── MSIDClientCredentialHelper.m │ │ │ ├── MSIDTestConfigurationProvider.h │ │ │ ├── MSIDTestConfigurationProvider.m │ │ │ ├── MSIDTestsConfig.h │ │ │ ├── MSIDTestsConfig.m │ │ │ ├── XCUIElement+CrossPlat.h │ │ │ ├── XCUIElement+CrossPlat.m │ │ │ ├── keyvault │ │ │ ├── AuthHeader.swift │ │ │ ├── Authentication.swift │ │ │ ├── KeyVaultError.swift │ │ │ ├── Network.swift │ │ │ ├── Result.swift │ │ │ └── Secret.swift │ │ │ └── lab_api │ │ │ ├── MSIDAutomationBaseApiRequest.h │ │ │ ├── MSIDAutomationBaseApiRequest.m │ │ │ ├── MSIDAutomationDeleteDeviceAPIRequest.h │ │ │ ├── MSIDAutomationDeleteDeviceAPIRequest.m │ │ │ ├── MSIDAutomationOperationAPIInMemoryCacheHandler.h │ │ │ ├── MSIDAutomationOperationAPIInMemoryCacheHandler.m │ │ │ ├── MSIDAutomationOperationAPIRequestHandler.h │ │ │ ├── MSIDAutomationOperationAPIRequestHandler.m │ │ │ ├── MSIDAutomationOperationResponseHandler.h │ │ │ ├── MSIDAutomationOperationResponseHandler.m │ │ │ ├── MSIDAutomationPasswordRequestHandler.h │ │ │ ├── MSIDAutomationPasswordRequestHandler.m │ │ │ ├── MSIDAutomationPolicyToggleAPIRequest.h │ │ │ ├── MSIDAutomationPolicyToggleAPIRequest.m │ │ │ ├── MSIDAutomationResetAPIRequest.h │ │ │ ├── MSIDAutomationResetAPIRequest.m │ │ │ ├── MSIDAutomationResetOperationResponseHandler.h │ │ │ ├── MSIDAutomationResetOperationResponseHandler.m │ │ │ ├── MSIDAutomationTemporaryAccountRequest.h │ │ │ ├── MSIDAutomationTemporaryAccountRequest.m │ │ │ ├── MSIDAutomationTemporaryAccountResponseHandler.h │ │ │ ├── MSIDAutomationTemporaryAccountResponseHandler.m │ │ │ ├── MSIDTestAutomationAccount.h │ │ │ ├── MSIDTestAutomationAccount.m │ │ │ ├── MSIDTestAutomationAccountConfigurationRequest.h │ │ │ ├── MSIDTestAutomationAccountConfigurationRequest.m │ │ │ ├── MSIDTestAutomationAppConfigurationRequest.h │ │ │ ├── MSIDTestAutomationAppConfigurationRequest.m │ │ │ ├── MSIDTestAutomationApplication.h │ │ │ └── MSIDTestAutomationApplication.m │ ├── integration │ │ ├── MSIDAuthorityIntegrationTests.m │ │ ├── MSIDCacheSchemaValidationTests.m │ │ ├── MSIDDefaultAccessorSSOIntegrationTests.m │ │ ├── MSIDDefaultTokenCacheIntegrationTests.m │ │ ├── MSIDExternalAADCacheSeederIntegrationTests.m │ │ ├── MSIDHttpRequestIntegrationTests.m │ │ ├── MSIDInteractiveControllerIntegrationTests.m │ │ ├── MSIDLegacyAccessorSSOIntegrationTests.m │ │ ├── MSIDLegacyTokenCacheIntegrationTests.m │ │ ├── MSIDOIDCSignoutRequestTests.m │ │ ├── MSIDSSOExtensionDeviceInfoRequestIntegrationTests.m │ │ ├── MSIDSSOExtensionGetAccountsRequestIntegrationTests.m │ │ ├── MSIDSSOExtensionGetSsoCookiesRequestTests.m │ │ ├── MSIDSSOExtensionPasskeyAssertionRequestTests.m │ │ ├── MSIDSSOExtensionPasskeyCredentialRequestTests.m │ │ ├── MSIDSSOExtensionRequestDelegateTests.m │ │ ├── MSIDSSOExtensionSignoutRequestIntegrationTests.m │ │ ├── MSIDSilentControllerIntegrationTests.m │ │ ├── MSIDTelemetryAggregatedTests.m │ │ ├── MSIDTelemetryDefaultTests.m │ │ ├── MSIDTelemetryIntegrationTests.m │ │ ├── MSIDTokenCacheDataSourceIntegrationTests.m │ │ ├── ios │ │ │ ├── MSIDBrokerCryptoProviderTests.m │ │ │ ├── MSIDBrokerInteractiveControllerIntegrationTests.m │ │ │ ├── MSIDBrokerKeyProviderTests.m │ │ │ ├── MSIDBrokerOptionsTests.m │ │ │ ├── MSIDBrokerResponseHandlerTests.m │ │ │ ├── MSIDBrokerTokenRequestTests.m │ │ │ ├── MSIDDefaultBrokerRequestTests.m │ │ │ ├── MSIDDefaultBrokerResponseHandlerTests.m │ │ │ ├── MSIDDefaultInteractiveTokenRequestTests.m │ │ │ ├── MSIDDefaultSilentTokenRequestTests.m │ │ │ ├── MSIDKeychainTokenCacheIntegrationTests.m │ │ │ ├── MSIDLegacyBrokerRequestTests.m │ │ │ ├── MSIDLegacyBrokerResponseHandlerTests.m │ │ │ ├── MSIDWebResponseOperationFactoryTests.m │ │ │ └── MSIDWipeDataTelemetryTests.m │ │ └── mac │ │ │ └── MSIDMacTokenCacheIntegrationTests.m │ ├── ios │ │ └── Info.plist │ ├── mac │ │ ├── Info.plist │ │ ├── MSIDKeychainUtilTests.m │ │ ├── MSIDMacACLKeychainAccessorTests.m │ │ ├── MSIDMacKeychainTokenCache+Test.h │ │ ├── MSIDMacKeychainTokenCacheTests.m │ │ ├── MSIDMacLegacyCachePersistenceHandlerTests.m │ │ ├── MSIDMacTokenCacheTests.m │ │ ├── MSIDRedirectUriVerifierMacTests.m │ │ └── MSIDXpcSingleSignOnProviderTest.m │ ├── mocks │ │ ├── ASAuthorizationSingleSignOnCredentialMock.h │ │ ├── ASAuthorizationSingleSignOnCredentialMock.m │ │ ├── MSIDAccountMetadataCacheAccessorMock.h │ │ ├── MSIDAccountMetadataCacheAccessorMock.m │ │ ├── MSIDAccountMetadataCacheMockGetAuthorityParameters.h │ │ ├── MSIDAccountMetadataCacheMockGetAuthorityParameters.m │ │ ├── MSIDAccountMetadataCacheMockRemoveAccountMetadataForHomeAccountIdParams.h │ │ ├── MSIDAccountMetadataCacheMockRemoveAccountMetadataForHomeAccountIdParams.m │ │ ├── MSIDAccountMetadataCacheMockUpdateAuthorityParameters.h │ │ ├── MSIDAccountMetadataCacheMockUpdateAuthorityParameters.m │ │ ├── MSIDAccountMetadataCacheMockUpdatePrincipalAccountIdParams.h │ │ ├── MSIDAccountMetadataCacheMockUpdatePrincipalAccountIdParams.m │ │ ├── MSIDAuthorityMock.h │ │ ├── MSIDAuthorityMock.m │ │ ├── MSIDAuthorizationControllerMock.h │ │ ├── MSIDAuthorizationControllerMock.m │ │ ├── MSIDClaimsRequestMock.h │ │ ├── MSIDClaimsRequestMock.m │ │ ├── MSIDExternalSSOContextMock.h │ │ ├── MSIDExternalSSOContextMock.m │ │ ├── MSIDFlightManagerMockProvider.h │ │ ├── MSIDFlightManagerMockProvider.m │ │ ├── MSIDLastRequestTelemetry+Tests.h │ │ ├── MSIDLegacyTokenCacheKey+UTest.h │ │ ├── MSIDLegacyTokenCacheKey+UTest.m │ │ ├── MSIDNonceTokenRequestMock.h │ │ ├── MSIDNonceTokenRequestMock.m │ │ ├── MSIDRegistrationInformationMock.h │ │ ├── MSIDRegistrationInformationMock.m │ │ ├── MSIDSSOExtensionGetAccountsRequestMock.h │ │ ├── MSIDSSOExtensionGetAccountsRequestMock.m │ │ ├── MSIDSSOExtensionGetDeviceInfoRequestMock.h │ │ ├── MSIDSSOExtensionGetDeviceInfoRequestMock.m │ │ ├── MSIDSSOExtensionGetSsoCookiesRequestMock.h │ │ ├── MSIDSSOExtensionGetSsoCookiesRequestMock.m │ │ ├── MSIDSSOExtensionPasskeyAssertionRequestMock.h │ │ ├── MSIDSSOExtensionPasskeyAssertionRequestMock.m │ │ ├── MSIDSSOExtensionPasskeyCredentialRequestMock.h │ │ ├── MSIDSSOExtensionPasskeyCredentialRequestMock.m │ │ ├── MSIDSSOExtensionSignoutRequestMock.h │ │ ├── MSIDSSOExtensionSignoutRequestMock.m │ │ ├── MSIDTestBrokerResponseHandler.h │ │ ├── MSIDTestBrokerResponseHandler.m │ │ ├── MSIDTestBrokerTokenRequest.h │ │ ├── MSIDTestBrokerTokenRequest.m │ │ ├── MSIDTestInteractiveTokenRequest.h │ │ ├── MSIDTestInteractiveTokenRequest.m │ │ ├── MSIDTestLocalInteractiveController.h │ │ ├── MSIDTestLocalInteractiveController.m │ │ ├── MSIDTestSilentTokenRequest.h │ │ ├── MSIDTestSilentTokenRequest.m │ │ ├── MSIDTestTokenRequestProvider.h │ │ ├── MSIDTestTokenRequestProvider.m │ │ ├── MSIDTestWebviewInteractingViewController.h │ │ ├── MSIDTestWebviewInteractingViewController.m │ │ ├── MSIDThrottlingServiceMock.h │ │ ├── MSIDThrottlingServiceMock.m │ │ ├── MSIDWKNavigationActionMock.h │ │ ├── MSIDWKNavigationActionMock.m │ │ ├── MSIDXpcProviderCacheMock.h │ │ └── MSIDXpcProviderCacheMock.m │ ├── throttling │ │ ├── MSIDThrottlingMetaDataTest.m │ │ ├── MSIDThrottlingModel429Test.m │ │ ├── MSIDThrottlingModelFactoryTest.m │ │ └── MSIDThrottlingModelNonRecoverableServerError.m │ └── util │ │ ├── MSIDApplicationTestUtil.h │ │ ├── MSIDApplicationTestUtil.m │ │ ├── MSIDHttpRequest+OverrideCacheSave.h │ │ ├── MSIDHttpRequest+OverrideCacheSave.m │ │ ├── MSIDKeychainTokenCache+MSIDTestsUtil.h │ │ ├── MSIDKeychainTokenCache+MSIDTestsUtil.m │ │ ├── MSIDTelemetryTestDispatcher.h │ │ ├── MSIDTelemetryTestDispatcher.m │ │ ├── MSIDTestBrokerKeyProviderHelper.h │ │ ├── MSIDTestBrokerKeyProviderHelper.m │ │ ├── MSIDTestBrokerResponse.h │ │ ├── MSIDTestBrokerResponse.m │ │ ├── MSIDTestBrokerResponseHelper.h │ │ ├── MSIDTestBrokerResponseHelper.m │ │ ├── MSIDTestBundle.h │ │ ├── MSIDTestBundle.m │ │ ├── MSIDTestCacheAccessorHelper.h │ │ ├── MSIDTestCacheAccessorHelper.m │ │ ├── MSIDTestCacheDataSource.h │ │ ├── MSIDTestCacheDataSource.m │ │ ├── MSIDTestContext.h │ │ ├── MSIDTestContext.m │ │ ├── MSIDTestIdTokenUtil.h │ │ ├── MSIDTestIdTokenUtil.m │ │ ├── MSIDTestIdentifiers.h │ │ ├── MSIDTestLogger.h │ │ ├── MSIDTestLogger.m │ │ ├── MSIDTestParametersProvider.h │ │ ├── MSIDTestParametersProvider.m │ │ ├── MSIDTestTelemetryEventsObserver.h │ │ ├── MSIDTestTelemetryEventsObserver.m │ │ ├── MSIDTestURLResponse+Util.h │ │ ├── MSIDTestURLResponse+Util.m │ │ ├── NSData+MSIDTestUtil.h │ │ ├── NSData+MSIDTestUtil.m │ │ ├── NSDate+MSIDTestUtil.h │ │ ├── NSDate+MSIDTestUtil.m │ │ ├── NSDictionary+MSIDTestUtil.h │ │ ├── NSDictionary+MSIDTestUtil.m │ │ ├── NSString+MSIDTestUtil.h │ │ ├── NSString+MSIDTestUtil.m │ │ ├── NSURL+MSIDTestUtil.h │ │ ├── NSURL+MSIDTestUtil.m │ │ ├── NSUUID+MSIDTestUtil.h │ │ ├── NSUUID+MSIDTestUtil.m │ │ ├── cache │ │ ├── MSIDTestCacheUtil.h │ │ ├── MSIDTestCacheUtil.m │ │ ├── MSIDTestConfiguration.h │ │ ├── MSIDTestConfiguration.m │ │ ├── MSIDTestTokenResponse.h │ │ └── MSIDTestTokenResponse.m │ │ ├── network │ │ ├── MSIDTestURLResponse.h │ │ ├── MSIDTestURLResponse.m │ │ ├── MSIDTestURLSession.h │ │ ├── MSIDTestURLSession.m │ │ ├── MSIDTestURLSessionDataTask.h │ │ ├── MSIDTestURLSessionDataTask.m │ │ ├── MSIDTestURLSessionUploadTask.h │ │ └── MSIDTestURLSessionUploadTask.m │ │ └── swizzle │ │ ├── MSIDTestSwizzle.h │ │ └── MSIDTestSwizzle.m └── xcconfig │ ├── identitycore__automation__common.xcconfig │ ├── identitycore__automation__ios.xcconfig │ ├── identitycore__automation__mac.xcconfig │ ├── identitycore__common.xcconfig │ ├── identitycore__common__ios.xcconfig │ ├── identitycore__common__mac.xcconfig │ ├── identitycore__debug.xcconfig │ ├── identitycore__idlib__common.xcconfig │ ├── identitycore__idlib__ios.xcconfig │ ├── identitycore__idlib__mac.xcconfig │ ├── identitycore__lib__common.xcconfig │ ├── identitycore__lib__common__ios.xcconfig │ ├── identitycore__lib__common__mac.xcconfig │ ├── identitycore__release.xcconfig │ ├── identitycore__testlib__common.xcconfig │ ├── identitycore__testlib__ios.xcconfig │ ├── identitycore__testlib__mac.xcconfig │ ├── identitycore__tests__common.xcconfig │ ├── identitycore__tests__ios.xcconfig │ └── identitycore__tests__mac.xcconfig ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── azure_pipelines ├── broker_submodule_check.yml ├── changelogs.yml ├── msal_submodule_check.yaml ├── pr-validation.yml ├── verify_msalcpp_per_pr_ios.yml └── verify_msalcpp_per_pr_mac.yml ├── changelog.txt ├── device_guids.py └── scripts └── update_xcode_config_cpp_checks.py /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /IdentityCore.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IdentityCore/IdentityCore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/IdentityCore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IdentityCore/IdentityCoreSwift/IdentityCoreSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/IdentityCoreSwift/IdentityCoreSwift.swift -------------------------------------------------------------------------------- /IdentityCore/MSIDTestsHostApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/MSIDTestsHostApp/AppDelegate.h -------------------------------------------------------------------------------- /IdentityCore/MSIDTestsHostApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/MSIDTestsHostApp/AppDelegate.m -------------------------------------------------------------------------------- /IdentityCore/MSIDTestsHostApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/MSIDTestsHostApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /IdentityCore/MSIDTestsHostApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/MSIDTestsHostApp/Info.plist -------------------------------------------------------------------------------- /IdentityCore/MSIDTestsHostApp/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/MSIDTestsHostApp/ViewController.h -------------------------------------------------------------------------------- /IdentityCore/MSIDTestsHostApp/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/MSIDTestsHostApp/ViewController.m -------------------------------------------------------------------------------- /IdentityCore/MSIDTestsHostApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/MSIDTestsHostApp/main.m -------------------------------------------------------------------------------- /IdentityCore/src/IdentityCore.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/IdentityCore.pch -------------------------------------------------------------------------------- /IdentityCore/src/IdentityCore_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/IdentityCore_Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDAADNetworkConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDAADNetworkConfiguration.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDAADNetworkConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDAADNetworkConfiguration.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDBasicContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDBasicContext.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDBasicContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDBasicContext.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDBrokerConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDBrokerConstants.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDBrokerConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDBrokerConstants.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDBrokerFlightProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDBrokerFlightProvider.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDBrokerFlightProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDBrokerFlightProvider.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDCache.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDCache.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDClientSDKType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDClientSDKType.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDClientSDKType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDClientSDKType.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDConstants.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDConstants.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDDRSType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDDRSType.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDDefaultErrorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDDefaultErrorConverter.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDDefaultErrorConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDDefaultErrorConverter.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDDeviceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDDeviceId.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDDeviceId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDDeviceId.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDError.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDError.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDErrorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDErrorConverter.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDErrorConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDErrorConverter.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDErrorConverting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDErrorConverting.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDExternalAADCacheSeeder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDExternalAADCacheSeeder.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDExternalAADCacheSeeder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDExternalAADCacheSeeder.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDFlightManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDFlightManager.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDFlightManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDFlightManager.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDFlightManagerQueryKeyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDFlightManagerQueryKeyDelegate.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDFlightManagerQueryKeyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDFlightManagerQueryKeyType.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDFlightManagerQueryKeyType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDFlightManagerQueryKeyType.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJsonSerializableFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJsonSerializableFactory.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJsonSerializableFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJsonSerializableFactory.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJsonSerializableTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJsonSerializableTypes.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJsonSerializableTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJsonSerializableTypes.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJsonSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJsonSerializer.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJsonSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJsonSerializer.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJsonSerializing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJsonSerializing.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJwtAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJwtAlgorithm.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDJwtAlgorithm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDJwtAlgorithm.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDNotifications.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDNotifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDNotifications.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDOAuth2Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDOAuth2Constants.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDOAuth2Constants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDOAuth2Constants.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDProviderType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDProviderType.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDProviderType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDProviderType.m -------------------------------------------------------------------------------- /IdentityCore/src/MSIDRequestContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDRequestContext.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDTelemetryStringSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDTelemetryStringSerializable.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDVersion.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDWebResponseOperationConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDWebResponseOperationConstants.h -------------------------------------------------------------------------------- /IdentityCore/src/MSIDWebResponseOperationConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/MSIDWebResponseOperationConstants.m -------------------------------------------------------------------------------- /IdentityCore/src/auth_scheme/MSIDAuthenticationScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/auth_scheme/MSIDAuthenticationScheme.h -------------------------------------------------------------------------------- /IdentityCore/src/auth_scheme/MSIDAuthenticationScheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/auth_scheme/MSIDAuthenticationScheme.m -------------------------------------------------------------------------------- /IdentityCore/src/auth_scheme/MSIDAuthenticationSchemePop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/auth_scheme/MSIDAuthenticationSchemePop.h -------------------------------------------------------------------------------- /IdentityCore/src/auth_scheme/MSIDAuthenticationSchemePop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/auth_scheme/MSIDAuthenticationSchemePop.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDCacheAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDCacheAccessor.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDCacheConfig.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDCacheConfig.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDCachedNonce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDCachedNonce.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDCachedNonce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDCachedNonce.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDExtendedTokenCacheDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDExtendedTokenCacheDataSource.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDKeychainTokenCache+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDKeychainTokenCache+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDKeychainTokenCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDKeychainTokenCache.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDKeychainTokenCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDKeychainTokenCache.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDMacTokenCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDMacTokenCache.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDMacTokenCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDMacTokenCache.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDTokenCacheDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDTokenCacheDataSource.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDUserInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDUserInformation.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/MSIDUserInformation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/MSIDUserInformation.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/accessor/MSIDTokenFilteringHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/accessor/MSIDTokenFilteringHelper.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/accessor/MSIDTokenFilteringHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/accessor/MSIDTokenFilteringHelper.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/crypto/MSIDAssymetricKeyPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/crypto/MSIDAssymetricKeyPair.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/crypto/MSIDAssymetricKeyPair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/crypto/MSIDAssymetricKeyPair.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/crypto/MSIDSymmetricKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/crypto/MSIDSymmetricKey.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/crypto/MSIDSymmetricKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/crypto/MSIDSymmetricKey.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/crypto/MSIDWPJKeyPairWithCert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/crypto/MSIDWPJKeyPairWithCert.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/crypto/MSIDWPJKeyPairWithCert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/crypto/MSIDWPJKeyPairWithCert.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDAppMetadataCacheKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDAppMetadataCacheKey.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDAppMetadataCacheKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDAppMetadataCacheKey.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDAppMetadataCacheQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDAppMetadataCacheQuery.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDAppMetadataCacheQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDAppMetadataCacheQuery.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDCacheKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDCacheKey.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDCacheKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDCacheKey.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDDefaultAccountCacheKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDDefaultAccountCacheKey.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDDefaultAccountCacheKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDDefaultAccountCacheKey.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDDefaultAccountCacheQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDDefaultAccountCacheQuery.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDDefaultAccountCacheQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDDefaultAccountCacheQuery.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDDefaultCredentialCacheKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDDefaultCredentialCacheKey.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDDefaultCredentialCacheKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDDefaultCredentialCacheKey.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDLegacyTokenCacheKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDLegacyTokenCacheKey.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDLegacyTokenCacheKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDLegacyTokenCacheKey.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDLegacyTokenCacheQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDLegacyTokenCacheQuery.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/key/MSIDLegacyTokenCacheQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/key/MSIDLegacyTokenCacheQuery.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/mac/MSIDMacACLKeychainAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/mac/MSIDMacACLKeychainAccessor.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/mac/MSIDMacACLKeychainAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/mac/MSIDMacACLKeychainAccessor.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/mac/MSIDMacCredentialStorageItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/mac/MSIDMacCredentialStorageItem.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/mac/MSIDMacCredentialStorageItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/mac/MSIDMacCredentialStorageItem.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/mac/MSIDMacKeychainTokenCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/mac/MSIDMacKeychainTokenCache.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/mac/MSIDMacKeychainTokenCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/mac/MSIDMacKeychainTokenCache.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/metadata/MSIDMetadataCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/metadata/MSIDMetadataCache.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/metadata/MSIDMetadataCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/metadata/MSIDMetadataCache.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDAccountCacheItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDAccountCacheItem.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDAccountCacheItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDAccountCacheItem.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDAppMetadataCacheItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDAppMetadataCacheItem.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDAppMetadataCacheItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDAppMetadataCacheItem.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDCredentialCacheItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDCredentialCacheItem.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDCredentialCacheItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDCredentialCacheItem.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDKeyGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDKeyGenerator.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDLegacyTokenCacheItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDLegacyTokenCacheItem.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDLegacyTokenCacheItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDLegacyTokenCacheItem.m -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDPRTCacheItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDPRTCacheItem.h -------------------------------------------------------------------------------- /IdentityCore/src/cache/token/MSIDPRTCacheItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/cache/token/MSIDPRTCacheItem.m -------------------------------------------------------------------------------- /IdentityCore/src/claims/MSIDClaimsRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/claims/MSIDClaimsRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/claims/MSIDClaimsRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/claims/MSIDClaimsRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/claims/MSIDIndividualClaimRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/claims/MSIDIndividualClaimRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/claims/MSIDIndividualClaimRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/claims/MSIDIndividualClaimRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/configuration/MSIDConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/configuration/MSIDConfiguration.h -------------------------------------------------------------------------------- /IdentityCore/src/configuration/MSIDConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/configuration/MSIDConfiguration.m -------------------------------------------------------------------------------- /IdentityCore/src/controllers/MSIDBaseRequestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/controllers/MSIDBaseRequestController.h -------------------------------------------------------------------------------- /IdentityCore/src/controllers/MSIDBaseRequestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/controllers/MSIDBaseRequestController.m -------------------------------------------------------------------------------- /IdentityCore/src/controllers/MSIDRequestControlling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/controllers/MSIDRequestControlling.h -------------------------------------------------------------------------------- /IdentityCore/src/controllers/MSIDSignoutController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/controllers/MSIDSignoutController.h -------------------------------------------------------------------------------- /IdentityCore/src/controllers/MSIDSignoutController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/controllers/MSIDSignoutController.m -------------------------------------------------------------------------------- /IdentityCore/src/controllers/MSIDSilentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/controllers/MSIDSilentController.h -------------------------------------------------------------------------------- /IdentityCore/src/controllers/MSIDSilentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/controllers/MSIDSilentController.m -------------------------------------------------------------------------------- /IdentityCore/src/intune/MSIDIntuneEnrollmentIdsCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/intune/MSIDIntuneEnrollmentIdsCache.h -------------------------------------------------------------------------------- /IdentityCore/src/intune/MSIDIntuneEnrollmentIdsCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/intune/MSIDIntuneEnrollmentIdsCache.m -------------------------------------------------------------------------------- /IdentityCore/src/intune/MSIDIntuneMAMResourcesCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/intune/MSIDIntuneMAMResourcesCache.h -------------------------------------------------------------------------------- /IdentityCore/src/intune/MSIDIntuneMAMResourcesCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/intune/MSIDIntuneMAMResourcesCache.m -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDLogger+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDLogger+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDLogger+Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDLogger+Trace.h -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDLogger.h -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDLogger.m -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDLoggerConnecting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDLoggerConnecting.h -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDMaskedHashableLogParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDMaskedHashableLogParameter.h -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDMaskedHashableLogParameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDMaskedHashableLogParameter.m -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDMaskedLogParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDMaskedLogParameter.h -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDMaskedLogParameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDMaskedLogParameter.m -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDMaskedUsernameLogParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDMaskedUsernameLogParameter.h -------------------------------------------------------------------------------- /IdentityCore/src/logger/MSIDMaskedUsernameLogParameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/logger/MSIDMaskedUsernameLogParameter.m -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDAADEndpointProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDAADEndpointProvider.h -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDAADEndpointProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDAADEndpointProvider.m -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDAADEndpointProviding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDAADEndpointProviding.h -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDHttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDHttpRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDHttpRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDHttpRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDHttpRequestProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDHttpRequestProtocol.h -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDURLSessionManager.h -------------------------------------------------------------------------------- /IdentityCore/src/network/MSIDURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/MSIDURLSessionManager.m -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDDRSDiscoveryRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDDRSDiscoveryRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDDRSDiscoveryRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDDRSDiscoveryRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDNonceHttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDNonceHttpRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDNonceHttpRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDNonceHttpRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDTokenRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDTokenRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDUrlResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDUrlResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDUrlResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDUrlResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDWebFingerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDWebFingerRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/network/request/MSIDWebFingerRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/network/request/MSIDWebFingerRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDBrokerResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDBrokerResponse+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDBrokerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDBrokerResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDBrokerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDBrokerResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDExternalSSOContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDExternalSSOContext.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDExternalSSOContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDExternalSSOContext.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDIdTokenClaims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDIdTokenClaims.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDIdTokenClaims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDIdTokenClaims.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDOauth2Factory+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDOauth2Factory+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDOauth2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDOauth2Factory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDOauth2Factory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDOauth2Factory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDTokenResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDTokenResponse+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDTokenResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDTokenResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDWebviewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDWebviewFactory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/MSIDWebviewFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/MSIDWebviewFactory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDAADOauth2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDAADOauth2Factory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDAADOauth2Factory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDAADOauth2Factory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDAADTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDAADTokenResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDAADTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDAADTokenResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDAADWebviewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDAADWebviewFactory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDAADWebviewFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDAADWebviewFactory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDClientInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDClientInfo.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_base/MSIDClientInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_base/MSIDClientInfo.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1BrokerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1BrokerResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1BrokerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1BrokerResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1IdTokenClaims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1IdTokenClaims.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1IdTokenClaims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1IdTokenClaims.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1Oauth2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1Oauth2Factory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1Oauth2Factory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1Oauth2Factory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1TokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1TokenResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1TokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1TokenResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1WebviewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1WebviewFactory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v1/MSIDAADV1WebviewFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v1/MSIDAADV1WebviewFactory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2BrokerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2BrokerResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2BrokerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2BrokerResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2IdTokenClaims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2IdTokenClaims.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2IdTokenClaims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2IdTokenClaims.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2Oauth2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2Oauth2Factory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2Oauth2Factory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2Oauth2Factory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2TokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2TokenResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2TokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2TokenResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2WebviewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2WebviewFactory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/aad_v2/MSIDAADV2WebviewFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/aad_v2/MSIDAADV2WebviewFactory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/account/MSIDAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/account/MSIDAccount.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/account/MSIDAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/account/MSIDAccount.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/account/MSIDAccountIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/account/MSIDAccountIdentifier.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/account/MSIDAccountIdentifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/account/MSIDAccountIdentifier.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/account/MSIDAccountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/account/MSIDAccountType.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/account/MSIDAccountType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/account/MSIDAccountType.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/b2c/MSIDB2CIdTokenClaims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/b2c/MSIDB2CIdTokenClaims.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/b2c/MSIDB2CIdTokenClaims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/b2c/MSIDB2CIdTokenClaims.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/b2c/MSIDB2COauth2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/b2c/MSIDB2COauth2Factory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/b2c/MSIDB2COauth2Factory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/b2c/MSIDB2COauth2Factory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/b2c/MSIDB2CTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/b2c/MSIDB2CTokenResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/b2c/MSIDB2CTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/b2c/MSIDB2CTokenResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/ciam/MSIDCIAMOauth2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/ciam/MSIDCIAMOauth2Factory.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/ciam/MSIDCIAMOauth2Factory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/ciam/MSIDCIAMOauth2Factory.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/ciam/MSIDCIAMTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/ciam/MSIDCIAMTokenResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/ciam/MSIDCIAMTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/ciam/MSIDCIAMTokenResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDAccessToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDAccessToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDAccessToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDAccessToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDBaseToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDBaseToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDBaseToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDBaseToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDBoundRefreshToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDBoundRefreshToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDBoundRefreshToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDBoundRefreshToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDCredentialType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDCredentialType.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDCredentialType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDCredentialType.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDFamilyRefreshToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDFamilyRefreshToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDFamilyRefreshToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDFamilyRefreshToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDIdToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDIdToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDIdToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDIdToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDLegacyAccessToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDLegacyAccessToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDLegacyAccessToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDLegacyAccessToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDLegacyRefreshToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDLegacyRefreshToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDLegacyRefreshToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDLegacyRefreshToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDPrimaryRefreshToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDPrimaryRefreshToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDPrimaryRefreshToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDPrimaryRefreshToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDRefreshToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDRefreshToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDRefreshToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDRefreshToken.m -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDV1IdToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDV1IdToken.h -------------------------------------------------------------------------------- /IdentityCore/src/oauth2/token/MSIDV1IdToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/oauth2/token/MSIDV1IdToken.m -------------------------------------------------------------------------------- /IdentityCore/src/parameters/MSIDBrokerInvocationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/parameters/MSIDBrokerInvocationOptions.h -------------------------------------------------------------------------------- /IdentityCore/src/parameters/MSIDBrokerInvocationOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/parameters/MSIDBrokerInvocationOptions.m -------------------------------------------------------------------------------- /IdentityCore/src/parameters/MSIDRequestParameters+Broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/parameters/MSIDRequestParameters+Broker.h -------------------------------------------------------------------------------- /IdentityCore/src/parameters/MSIDRequestParameters+Broker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/parameters/MSIDRequestParameters+Broker.m -------------------------------------------------------------------------------- /IdentityCore/src/parameters/MSIDRequestParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/parameters/MSIDRequestParameters.h -------------------------------------------------------------------------------- /IdentityCore/src/parameters/MSIDRequestParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/parameters/MSIDRequestParameters.m -------------------------------------------------------------------------------- /IdentityCore/src/pop_manager/MSIDDevicePopManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/pop_manager/MSIDDevicePopManager.h -------------------------------------------------------------------------------- /IdentityCore/src/pop_manager/MSIDDevicePopManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/pop_manager/MSIDDevicePopManager.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDAuthorizationCodeResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDAuthorizationCodeResult.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDAuthorizationCodeResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDAuthorizationCodeResult.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDEcdhApv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDEcdhApv.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDEcdhApv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDEcdhApv.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDInteractiveTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDInteractiveTokenRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDInteractiveTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDInteractiveTokenRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDJWECrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDJWECrypto.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDJWECrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDJWECrypto.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDNonceTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDNonceTokenRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDNonceTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDNonceTokenRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDOIDCSignoutRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDOIDCSignoutRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDOIDCSignoutRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDOIDCSignoutRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDSilentTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDSilentTokenRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDSilentTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDSilentTokenRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDTokenResponseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDTokenResponseHandler.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/MSIDTokenResponseHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/MSIDTokenResponseHandler.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/broker/MSIDBrokerKeyProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/broker/MSIDBrokerKeyProvider.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/broker/MSIDBrokerKeyProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/broker/MSIDBrokerKeyProvider.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/broker/MSIDBrokerTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/broker/MSIDBrokerTokenRequest.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/broker/MSIDBrokerTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/broker/MSIDBrokerTokenRequest.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/result/MSIDTokenResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/result/MSIDTokenResult.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/result/MSIDTokenResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/result/MSIDTokenResult.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/sdk/MSIDBrokerResponseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/sdk/MSIDBrokerResponseHandler.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/sdk/MSIDBrokerResponseHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/sdk/MSIDBrokerResponseHandler.m -------------------------------------------------------------------------------- /IdentityCore/src/requests/sdk/MSIDTokenRequestProviding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/sdk/MSIDTokenRequestProviding.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/sdk/MSIDTokenResponseValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/sdk/MSIDTokenResponseValidator.h -------------------------------------------------------------------------------- /IdentityCore/src/requests/sdk/MSIDTokenResponseValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/requests/sdk/MSIDTokenResponseValidator.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDAggregatedDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDAggregatedDispatcher.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDAggregatedDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDAggregatedDispatcher.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDDefaultDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDDefaultDispatcher.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDDefaultDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDDefaultDispatcher.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDGetV1IdTokenCacheEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDGetV1IdTokenCacheEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDGetV1IdTokenCacheEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDGetV1IdTokenCacheEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDGetV1IdTokenHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDGetV1IdTokenHttpEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDGetV1IdTokenHttpEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDGetV1IdTokenHttpEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetry+Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetry+Cache.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetry+Cache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetry+Cache.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetry+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetry+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetry.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetry.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryAPIEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryAPIEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryAPIEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryAPIEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryBaseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryBaseEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryBaseEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryBaseEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryBrokerEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryBrokerEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryBrokerEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryBrokerEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryCacheEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryCacheEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryCacheEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryCacheEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryDefaultEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryDefaultEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryDefaultEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryDefaultEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryDispatcher.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryEventInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryEventInterface.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryEventStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryEventStrings.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryEventStrings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryEventStrings.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryEventsObserving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryEventsObserving.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryHttpEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryHttpEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryHttpEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryPiiOiiRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryPiiOiiRules.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryPiiOiiRules.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryPiiOiiRules.m -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryUIEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryUIEvent.h -------------------------------------------------------------------------------- /IdentityCore/src/telemetry/MSIDTelemetryUIEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/telemetry/MSIDTelemetryUIEvent.m -------------------------------------------------------------------------------- /IdentityCore/src/throttling/MSIDThrottlingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/throttling/MSIDThrottlingService.h -------------------------------------------------------------------------------- /IdentityCore/src/throttling/MSIDThrottlingService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/throttling/MSIDThrottlingService.m -------------------------------------------------------------------------------- /IdentityCore/src/throttling/cache/MSIDLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/throttling/cache/MSIDLRUCache.h -------------------------------------------------------------------------------- /IdentityCore/src/throttling/cache/MSIDLRUCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/throttling/cache/MSIDLRUCache.m -------------------------------------------------------------------------------- /IdentityCore/src/throttling/model/MSIDThrottlingModel429.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/throttling/model/MSIDThrottlingModel429.h -------------------------------------------------------------------------------- /IdentityCore/src/throttling/model/MSIDThrottlingModel429.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/throttling/model/MSIDThrottlingModel429.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDAppExtensionUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDAppExtensionUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDAuthScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDAuthScheme.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDAuthScheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDAuthScheme.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDBartFeatureUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDBartFeatureUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDBartFeatureUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDBartFeatureUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDHelpers.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDHelpers.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDJWTHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDJWTHelper.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDJWTHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDJWTHelper.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDJsonObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDJsonObject.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDJsonObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDJsonObject.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDJsonSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDJsonSerializable.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDKeyOperationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDKeyOperationUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDKeyOperationUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDKeyOperationUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDKeychainUtil+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDKeychainUtil+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDKeychainUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDKeychainUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDPromptType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDPromptType.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDPromptType_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDPromptType_Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDRedirectUri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDRedirectUri.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDRedirectUri.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDRedirectUri.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDRedirectUriVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDRedirectUriVerifier.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDURLFormObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDURLFormObject.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDURLFormObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDURLFormObject.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDWebAuthNUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDWebAuthNUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDWebAuthNUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDWebAuthNUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/MSIDXpcIdentifierCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/MSIDXpcIdentifierCache.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSBundle+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSBundle+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSBundle+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSBundle+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSData+JWT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSData+JWT.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSData+JWT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSData+JWT.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSData+MSIDAES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSData+MSIDAES.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSData+MSIDAES.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSData+MSIDAES.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSData+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSData+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSData+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSData+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDate+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDate+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDate+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDate+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDJsonSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDJsonSerializable.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDJsonSerializable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDJsonSerializable.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDLogging.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDLogging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDLogging.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDQueryItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDQueryItems.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSDictionary+MSIDQueryItems.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSDictionary+MSIDQueryItems.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSError+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSError+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSError+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSError+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSError+MSIDServerTelemetryError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSError+MSIDServerTelemetryError.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSError+MSIDServerTelemetryError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSError+MSIDServerTelemetryError.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSError+MSIDThrottlingExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSError+MSIDThrottlingExtension.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSError+MSIDThrottlingExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSError+MSIDThrottlingExtension.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSJSONSerialization+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSJSONSerialization+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSJSONSerialization+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSJSONSerialization+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSKeyedArchiver+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSKeyedArchiver+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSKeyedArchiver+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSKeyedArchiver+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSKeyedUnarchiver+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSKeyedUnarchiver+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSKeyedUnarchiver+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSKeyedUnarchiver+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSMutableDictionary+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSMutableDictionary+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSMutableDictionary+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSMutableDictionary+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSOrderedSet+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSOrderedSet+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSOrderedSet+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSOrderedSet+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSString+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSString+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSString+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSString+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSString+MSIDTelemetryExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSString+MSIDTelemetryExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSString+MSIDTelemetryExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSString+MSIDTelemetryExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSURL+MSIDAADUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSURL+MSIDAADUtils.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSURL+MSIDAADUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSURL+MSIDAADUtils.m -------------------------------------------------------------------------------- /IdentityCore/src/util/NSURL+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSURL+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/NSURL+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/NSURL+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/ios/MSIDAppExtensionUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/ios/MSIDAppExtensionUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/ios/MSIDKeychainUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/ios/MSIDKeychainUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/ios/MSIDRedirectUriVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/ios/MSIDRedirectUriVerifier.m -------------------------------------------------------------------------------- /IdentityCore/src/util/ios/UIApplication+MSIDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/ios/UIApplication+MSIDExtensions.h -------------------------------------------------------------------------------- /IdentityCore/src/util/ios/UIApplication+MSIDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/ios/UIApplication+MSIDExtensions.m -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDAppExtensionUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDAppExtensionUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDKeychainUtil+MacInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDKeychainUtil+MacInternal.h -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDKeychainUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDKeychainUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDLoginKeychainUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDLoginKeychainUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDLoginKeychainUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDLoginKeychainUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDRedirectUriVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDRedirectUriVerifier.m -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDXpcConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDXpcConfiguration.h -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDXpcConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDXpcConfiguration.m -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDXpcProviderCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDXpcProviderCache.h -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDXpcProviderCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDXpcProviderCache.m -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDXpcProviderCaching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDXpcProviderCaching.h -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDXpcSingleSignOnProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDXpcSingleSignOnProvider.h -------------------------------------------------------------------------------- /IdentityCore/src/util/mac/MSIDXpcSingleSignOnProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/util/mac/MSIDXpcSingleSignOnProvider.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAADAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAADAuthority.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAADAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAADAuthority.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAADTenant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAADTenant.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAADTenant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAADTenant.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDADFSAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDADFSAuthority.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDADFSAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDADFSAuthority.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAadAuthorityCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAadAuthorityCache.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAadAuthorityCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAadAuthorityCache.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAadAuthorityCacheRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAadAuthorityCacheRecord.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAadAuthorityCacheRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAadAuthorityCacheRecord.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAadAuthorityResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAadAuthorityResolver.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAadAuthorityResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAadAuthorityResolver.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAdfsAuthorityResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAdfsAuthorityResolver.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAdfsAuthorityResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAdfsAuthorityResolver.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthority+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthority+Internal.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthority.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthority.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthorityCacheRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthorityCacheRecord.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthorityCacheRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthorityCacheRecord.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthorityFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthorityFactory.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthorityFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthorityFactory.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDAuthorityResolving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDAuthorityResolving.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDB2CAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDB2CAuthority.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDB2CAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDB2CAuthority.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDB2CAuthorityResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDB2CAuthorityResolver.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDB2CAuthorityResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDB2CAuthorityResolver.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDCIAMAuthority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDCIAMAuthority.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDCIAMAuthority.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDCIAMAuthority.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDCIAMAuthorityResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDCIAMAuthorityResolver.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDCIAMAuthorityResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDCIAMAuthorityResolver.m -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDOpenIdProviderMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDOpenIdProviderMetadata.h -------------------------------------------------------------------------------- /IdentityCore/src/validation/MSIDOpenIdProviderMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/validation/MSIDOpenIdProviderMetadata.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDCertAuthManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDCertAuthManager.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDCertAuthManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDCertAuthManager.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDMainThreadUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDMainThreadUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDMainThreadUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDMainThreadUtil.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDWebviewAuthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDWebviewAuthorization.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDWebviewAuthorization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDWebviewAuthorization.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDWebviewInteracting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDWebviewInteracting.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDWebviewSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDWebviewSession.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/MSIDWebviewSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/MSIDWebviewSession.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/operations/MSIDWebWPJOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/operations/MSIDWebWPJOperation.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/operations/MSIDWebWPJOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/operations/MSIDWebWPJOperation.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/pkce/MSIDPkce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/pkce/MSIDPkce.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/pkce/MSIDPkce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/pkce/MSIDPkce.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/response/MSIDWebOAuth2Response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/response/MSIDWebOAuth2Response.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/response/MSIDWebOAuth2Response.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/response/MSIDWebOAuth2Response.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/response/MSIDWebWPJResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/response/MSIDWebWPJResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/response/MSIDWebWPJResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/response/MSIDWebWPJResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/webview/response/MSIDWebviewResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/response/MSIDWebviewResponse.h -------------------------------------------------------------------------------- /IdentityCore/src/webview/response/MSIDWebviewResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/webview/response/MSIDWebviewResponse.m -------------------------------------------------------------------------------- /IdentityCore/src/workplacejoin/MSIDPkeyAuthHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/workplacejoin/MSIDPkeyAuthHelper.h -------------------------------------------------------------------------------- /IdentityCore/src/workplacejoin/MSIDPkeyAuthHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/workplacejoin/MSIDPkeyAuthHelper.m -------------------------------------------------------------------------------- /IdentityCore/src/workplacejoin/MSIDWPJMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/workplacejoin/MSIDWPJMetadata.h -------------------------------------------------------------------------------- /IdentityCore/src/workplacejoin/MSIDWPJMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/workplacejoin/MSIDWPJMetadata.m -------------------------------------------------------------------------------- /IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinUtil.h -------------------------------------------------------------------------------- /IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinUtilBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinUtilBase.h -------------------------------------------------------------------------------- /IdentityCore/tests/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/File.swift -------------------------------------------------------------------------------- /IdentityCore/tests/IdentityCoreTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/IdentityCoreTests-Bridging-Header.h -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADAuthorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADAuthorityTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADEndpointProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADEndpointProviderTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADIdTokenClaimsFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADIdTokenClaimsFactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADOauth2FactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADOauth2FactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADRequestConfiguratorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADRequestConfiguratorTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADRequestErrorHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADRequestErrorHandlerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADTokenResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADTokenResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADV1Oauth2FactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADV1Oauth2FactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADV1TokenResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADV1TokenResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADV1WebviewFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADV1WebviewFactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADV2Oauth2FactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADV2Oauth2FactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADV2TokenResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADV2TokenResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADV2WebviewFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADV2WebviewFactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAADWebviewFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAADWebviewFactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDADFSAuthorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDADFSAuthorityTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAadAuthorityCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAadAuthorityCacheTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccessTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccessTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccountCacheItemTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccountCacheItemTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccountCredentialsCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccountCredentialsCacheTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccountIdentifierTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccountIdentifierTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccountMetadataCacheItemTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccountMetadataCacheItemTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccountMetadataTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccountMetadataTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccountTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAccountTypeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAccountTypeTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAppMetadataCacheKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAppMetadataCacheKeyTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAppMetadataCacheQueryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAppMetadataCacheQueryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAssymetricKeyPair+Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAssymetricKeyPair+Test.h -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAssymetricKeyPair+Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAssymetricKeyPair+Test.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAuthenticationSchemePopTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAuthenticationSchemePopTest.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAuthenticationSchemeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAuthenticationSchemeTest.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDAuthorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDAuthorityTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDB2CAuthorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDB2CAuthorityTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDB2COauth2FactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDB2COauth2FactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDBackgroundTaskManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDBackgroundTaskManagerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDBaseTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDBaseTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDBoundRefreshTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDBoundRefreshTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDBrokerFlightProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDBrokerFlightProviderTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDBrokerOperationRequestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDBrokerOperationRequestTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDBrokerOperationResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDBrokerOperationResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDBrokerRedirectUriTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDBrokerRedirectUriTest.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCBAWebAADAuthResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCBAWebAADAuthResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCIAMAuthorityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCIAMAuthorityTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCIAMOauth2FactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCIAMOauth2FactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCacheItemJsonSerializerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCacheItemJsonSerializerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCacheKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCacheKeyTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCacheTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDClaimsRequestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDClaimsRequestTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDClientInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDClientInfoTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCredentialCacheItemTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCredentialCacheItemTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCredentialTypeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCredentialTypeTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDCurrentRequestTelemetryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDCurrentRequestTelemetryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDDataExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDDataExtensionsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDDefaultAccountCacheKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDDefaultAccountCacheKeyTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDDefaultAccountCacheQueryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDDefaultAccountCacheQueryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDDefaultCredentialCacheKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDDefaultCredentialCacheKeyTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDDeviceInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDDeviceInfoTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDDevicePopManagerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDDevicePopManagerTest.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDDictionaryExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDDictionaryExtensionsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDErrorExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDErrorExtensionsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDErrorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDErrorTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDFlightManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDFlightManagerTests.swift -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDHelperTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDHttpRequestTelemetryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDHttpRequestTelemetryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDIdTokenClaimsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDIdTokenClaimsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDIdTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDIdTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDIntuneEnrollmentIdsCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDIntuneEnrollmentIdsCacheTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDIntuneMAMResourcesCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDIntuneMAMResourcesCacheTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDJWECryptoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDJWECryptoTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDJsonObjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDJsonObjectTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDJsonSerializableFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDJsonSerializableFactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDKeyOperationUtilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDKeyOperationUtilTest.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDKeyedArchiverSerializerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDKeyedArchiverSerializerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLRUCacheTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLRUCacheTest.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLastRequestTelemetryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLastRequestTelemetryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLegacyAccessTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLegacyAccessTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLegacyCacheKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLegacyCacheKeyTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLegacyCacheQueryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLegacyCacheQueryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLegacyRefreshTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLegacyRefreshTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLegacySingleResourceTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLegacySingleResourceTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLegacyTokenCacheItemTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLegacyTokenCacheItemTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDLoggerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDLoggerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDMainThreadUtilTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDMainThreadUtilTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDMaskedLogParameterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDMaskedLogParameterTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDNonceTokenRequestTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDNonceTokenRequestTest.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDOAuthRequestConfiguratorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDOAuthRequestConfiguratorTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDOauth2FactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDOauth2FactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDOrderedSetExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDOrderedSetExtensionsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDPKeyAuthHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDPKeyAuthHandlerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDPkceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDPkceTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDPkeyAuthHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDPkeyAuthHelperTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDPrimaryRefreshTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDPrimaryRefreshTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDRedirectUriVerifierTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDRedirectUriVerifierTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDRefreshTokenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDRefreshTokenTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDRequestControllerFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDRequestControllerFactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDRequestParametersTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDRequestParametersTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDStringExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDStringExtensionsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDSwitchBrowserOperationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDSwitchBrowserOperationTest.swift -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDSwitchBrowserResponseTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDSwitchBrowserResponseTest.swift -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDSymmetricKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDSymmetricKeyTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDSystemWebviewControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDSystemWebviewControllerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDTelemetryCacheEventTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDTelemetryCacheEventTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDTelemetryExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDTelemetryExtensionsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDTelemetryUIEventTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDTelemetryUIEventTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDThumbprintCalculatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDThumbprintCalculatorTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDTokenFilteringHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDTokenFilteringHelperTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDTokenResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDTokenResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDURLExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDURLExtensionsTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDURLFormObjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDURLFormObjectTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDURLSessionDelegateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDURLSessionDelegateTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDUrlRequestSerializerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDUrlRequestSerializerTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDVersion.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWebAADAuthResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWebAADAuthResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWebMSAuthResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWebMSAuthResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWebOAuth2ResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWebOAuth2ResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWebOpenBrowserResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWebOpenBrowserResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWebviewAuthorizationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWebviewAuthorizationTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWebviewFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWebviewFactoryTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWebviewResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWebviewResponseTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/MSIDWorkPlaceJoinUtilTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/MSIDWorkPlaceJoinUtilTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/ios/Info.plist -------------------------------------------------------------------------------- /IdentityCore/tests/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mac/Info.plist -------------------------------------------------------------------------------- /IdentityCore/tests/mac/MSIDKeychainUtilTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mac/MSIDKeychainUtilTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/mac/MSIDMacKeychainTokenCache+Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mac/MSIDMacKeychainTokenCache+Test.h -------------------------------------------------------------------------------- /IdentityCore/tests/mac/MSIDMacKeychainTokenCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mac/MSIDMacKeychainTokenCacheTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/mac/MSIDMacTokenCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mac/MSIDMacTokenCacheTests.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDAuthorityMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDAuthorityMock.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDAuthorityMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDAuthorityMock.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDClaimsRequestMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDClaimsRequestMock.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDClaimsRequestMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDClaimsRequestMock.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDExternalSSOContextMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDExternalSSOContextMock.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDExternalSSOContextMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDExternalSSOContextMock.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDNonceTokenRequestMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDNonceTokenRequestMock.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDNonceTokenRequestMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDNonceTokenRequestMock.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDTestBrokerTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDTestBrokerTokenRequest.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDTestBrokerTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDTestBrokerTokenRequest.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDTestSilentTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDTestSilentTokenRequest.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDTestSilentTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDTestSilentTokenRequest.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDTestTokenRequestProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDTestTokenRequestProvider.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDTestTokenRequestProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDTestTokenRequestProvider.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDThrottlingServiceMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDThrottlingServiceMock.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDThrottlingServiceMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDThrottlingServiceMock.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDWKNavigationActionMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDWKNavigationActionMock.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDWKNavigationActionMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDWKNavigationActionMock.m -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDXpcProviderCacheMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDXpcProviderCacheMock.h -------------------------------------------------------------------------------- /IdentityCore/tests/mocks/MSIDXpcProviderCacheMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/mocks/MSIDXpcProviderCacheMock.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDApplicationTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDApplicationTestUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDApplicationTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDApplicationTestUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTelemetryTestDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTelemetryTestDispatcher.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTelemetryTestDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTelemetryTestDispatcher.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestBrokerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestBrokerResponse.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestBrokerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestBrokerResponse.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestBrokerResponseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestBrokerResponseHelper.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestBrokerResponseHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestBrokerResponseHelper.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestBundle.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestBundle.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestCacheAccessorHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestCacheAccessorHelper.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestCacheAccessorHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestCacheAccessorHelper.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestCacheDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestCacheDataSource.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestCacheDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestCacheDataSource.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestContext.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestContext.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestIdTokenUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestIdTokenUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestIdTokenUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestIdTokenUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestIdentifiers.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestLogger.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestLogger.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestParametersProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestParametersProvider.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestParametersProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestParametersProvider.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestURLResponse+Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestURLResponse+Util.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/MSIDTestURLResponse+Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/MSIDTestURLResponse+Util.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSData+MSIDTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSData+MSIDTestUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSData+MSIDTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSData+MSIDTestUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSDate+MSIDTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSDate+MSIDTestUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSDate+MSIDTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSDate+MSIDTestUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSDictionary+MSIDTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSDictionary+MSIDTestUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSDictionary+MSIDTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSDictionary+MSIDTestUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSString+MSIDTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSString+MSIDTestUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSString+MSIDTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSString+MSIDTestUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSURL+MSIDTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSURL+MSIDTestUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSURL+MSIDTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSURL+MSIDTestUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSUUID+MSIDTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSUUID+MSIDTestUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/NSUUID+MSIDTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/NSUUID+MSIDTestUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/cache/MSIDTestCacheUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/cache/MSIDTestCacheUtil.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/cache/MSIDTestCacheUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/cache/MSIDTestCacheUtil.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/cache/MSIDTestConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/cache/MSIDTestConfiguration.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/cache/MSIDTestConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/cache/MSIDTestConfiguration.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/cache/MSIDTestTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/cache/MSIDTestTokenResponse.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/cache/MSIDTestTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/cache/MSIDTestTokenResponse.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/network/MSIDTestURLResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/network/MSIDTestURLResponse.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/network/MSIDTestURLResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/network/MSIDTestURLResponse.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/network/MSIDTestURLSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/network/MSIDTestURLSession.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/network/MSIDTestURLSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/network/MSIDTestURLSession.m -------------------------------------------------------------------------------- /IdentityCore/tests/util/swizzle/MSIDTestSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/swizzle/MSIDTestSwizzle.h -------------------------------------------------------------------------------- /IdentityCore/tests/util/swizzle/MSIDTestSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/tests/util/swizzle/MSIDTestSwizzle.m -------------------------------------------------------------------------------- /IdentityCore/xcconfig/identitycore__common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/xcconfig/identitycore__common.xcconfig -------------------------------------------------------------------------------- /IdentityCore/xcconfig/identitycore__debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/xcconfig/identitycore__debug.xcconfig -------------------------------------------------------------------------------- /IdentityCore/xcconfig/identitycore__idlib__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/xcconfig/identitycore__idlib__ios.xcconfig -------------------------------------------------------------------------------- /IdentityCore/xcconfig/identitycore__idlib__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/xcconfig/identitycore__idlib__mac.xcconfig -------------------------------------------------------------------------------- /IdentityCore/xcconfig/identitycore__release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/xcconfig/identitycore__release.xcconfig -------------------------------------------------------------------------------- /IdentityCore/xcconfig/identitycore__tests__ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/xcconfig/identitycore__tests__ios.xcconfig -------------------------------------------------------------------------------- /IdentityCore/xcconfig/identitycore__tests__mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/IdentityCore/xcconfig/identitycore__tests__mac.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/README.md -------------------------------------------------------------------------------- /azure_pipelines/broker_submodule_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/azure_pipelines/broker_submodule_check.yml -------------------------------------------------------------------------------- /azure_pipelines/changelogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/azure_pipelines/changelogs.yml -------------------------------------------------------------------------------- /azure_pipelines/msal_submodule_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/azure_pipelines/msal_submodule_check.yaml -------------------------------------------------------------------------------- /azure_pipelines/pr-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/azure_pipelines/pr-validation.yml -------------------------------------------------------------------------------- /azure_pipelines/verify_msalcpp_per_pr_ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/azure_pipelines/verify_msalcpp_per_pr_ios.yml -------------------------------------------------------------------------------- /azure_pipelines/verify_msalcpp_per_pr_mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/azure_pipelines/verify_msalcpp_per_pr_mac.yml -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/changelog.txt -------------------------------------------------------------------------------- /device_guids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/device_guids.py -------------------------------------------------------------------------------- /scripts/update_xcode_config_cpp_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-common-for-objc/HEAD/scripts/update_xcode_config_cpp_checks.py --------------------------------------------------------------------------------