Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e4f7096
Setup empty cred managment project.
antrix1989 May 26, 2026
3e96c2c
Import msal SDK.
antrix1989 May 28, 2026
6358fd6
Draft public api.
antrix1989 May 28, 2026
d18fd00
Add sample app.
antrix1989 May 28, 2026
30e9602
Use fake AT in sample app.
antrix1989 May 28, 2026
2bd31d5
Add logger config.
antrix1989 May 28, 2026
5dbea48
add token_provider folder.
antrix1989 May 28, 2026
363e7f5
mock cred storage.
antrix1989 May 28, 2026
14cee69
use callback for delete method.
antrix1989 May 28, 2026
9eeb256
use callback for other methods as well.
antrix1989 May 28, 2026
08f0b77
add challendge back to register method.
antrix1989 May 28, 2026
84ebb46
add code to use OS API for passkey creation.
antrix1989 May 29, 2026
d3f33bc
use authenticator bundle id to test passkey.
antrix1989 May 29, 2026
a3c08b5
use CP bundle ID on mac.
antrix1989 May 29, 2026
e37ac16
Split cred methods.
antrix1989 May 29, 2026
cb3c8f7
update code to create exact cred class.
antrix1989 May 29, 2026
d1861f4
refactor code.
antrix1989 May 29, 2026
d879b94
tc.
antrix1989 May 30, 2026
351c616
move MSALCredentialMethod to internal folder.
antrix1989 May 30, 2026
a1a0cdf
Removed isDefault property.
antrix1989 May 30, 2026
87f0358
hide some properties.
antrix1989 May 30, 2026
7851857
refactor credential type.
antrix1989 May 30, 2026
4b57d8b
update display name.
antrix1989 May 30, 2026
d7d6294
move correlation id.
antrix1989 May 30, 2026
1d32508
refactor delete method.
antrix1989 May 30, 2026
03c586b
show phone number.
antrix1989 May 30, 2026
c4f1194
show passkey name.
antrix1989 May 30, 2026
7c66e13
remove unused property.
antrix1989 May 30, 2026
e22a6f9
refactor.
antrix1989 Jun 2, 2026
46ffdd7
refactor passkey registration.
antrix1989 Jun 2, 2026
8085ca6
change passkey api.
antrix1989 Jun 2, 2026
46683b4
refactor new apis.
antrix1989 Jun 2, 2026
f041329
hide internal code.
antrix1989 Jun 2, 2026
8e69ba3
use passkey name.
antrix1989 Jun 2, 2026
bd5fae1
fix password entry.
antrix1989 Jun 2, 2026
b524000
initial server api implementation.
antrix1989 Jun 3, 2026
145c890
update network layer and sample app.
antrix1989 Jun 3, 2026
2a40703
Refactor network layer.
antrix1989 Jun 4, 2026
f6a052e
tt.
antrix1989 Jun 4, 2026
6e77555
Refactor network layer protocol
antrix1989 Jun 4, 2026
4057773
refacor config params.
antrix1989 Jun 4, 2026
db89b78
Acquire AT to call server apis.
antrix1989 Jun 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Minimal MSAL_Private module for credential management network layer.
// Contains only IdentityCore types needed by Swift network code.
module MSAL_Private {
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/network/MSIDHttpRequest.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/network/MSIDHttpRequestInterceptorProtocol.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/network/request_server_telemetry/MSIDHttpRequestServerTelemetryHandling.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/network/request_serializer/MSIDRequestSerialization.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/network/request_configurator/MSIDHttpRequestConfiguratorProtocol.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/network/response_serializer/MSIDResponseSerialization.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/network/error_handler/MSIDHttpRequestErrorHandling.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/MSIDBasicContext.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/logger/MSIDLogger.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/logger/MSIDLogger+Internal.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/logger/MSIDMaskedHashableLogParameter.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/logger/MSIDMaskedLogParameter.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/logger/MSIDMaskedUsernameLogParameter.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/MSIDError.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/oauth2/MSIDExternalSSOContext.h"
header "/Users/antrix1989/workspace/apple/azure-activedirectory-tokenbroker-for-objc/sedemche/ciam-cred-managment/ADAuthenticationBroker/Frameworks/microsoft-authentication-library-for-objc/MSAL/IdentityCore/IdentityCore/src/parameters/MSIDRequestParameters.h"
export *
}
Loading
Loading