summaryrefslogtreecommitdiff
path: root/domain_api/Config_account.in
diff options
context:
space:
mode:
Diffstat (limited to 'domain_api/Config_account.in')
-rw-r--r--domain_api/Config_account.in44
1 files changed, 44 insertions, 0 deletions
diff --git a/domain_api/Config_account.in b/domain_api/Config_account.in
new file mode 100644
index 0000000..38fc6ef
--- /dev/null
+++ b/domain_api/Config_account.in
@@ -0,0 +1,44 @@
+menu "Account Native API Group"
+config building-blocks-sub2-domain_API-Account-Account_Manager
+ bool "Account Manager"
+ help
+ This block supports managing account related information.
+ Once you check the Account Manager before Image Creation, it will be included the image.
+
+menuconfig building-blocks-sub2-domain_API-Account-FIDO_Client
+ bool "FIDO Client"
+ help
+ Enabling Fido Client and it is possible to use Fido Client API
+ dummyasm should be selected for tct running.
+ fido-client needs fido-asm and fido-authenticator according to FIDO UAF Spec 1.0 to which fido-client is comaptible.
+ But fido-asm and fido-authenticator are vendor specific modules and to be developed by them.
+ So we use dummyasm for verification of fido-client APIs instead of fido-asm and fido-authenticator.
+if building-blocks-sub2-domain_API-Account-FIDO_Client
+ config dummyasm
+ bool "dummyasm"
+ help
+ This is a dummy ASM for testing FIDO client.
+endif
+
+config building-blocks-sub2-domain_API-Account-OAuth2
+ bool "OAuth2"
+ depends on building-blocks-sub2-domain_API-Web-WebView
+ help
+ Enabling OAuth2 and it is possible to use OAuth2 API.
+ WebView is mandatory becasue oauth2 manager api triggers
+ to show web page for user interaction to input user id and passwordbr which is following oauth 2.0 specification
+
+config building-blocks-sub2-domain_API-Account-Sync_Manager
+ bool "Sync Manager"
+ select building-blocks-sub2-domain_API-Social-Contacts
+ select building-blocks-sub2-domain_API-Account-Account_Manager
+ select building-blocks-sub2-domain_API-Network-WiFi
+ help
+ This block supports managing data synchronization.
+ Also, to use this feature, either Data Network or Wi-Fi connection is required.
+ Once you check the Sync Manager before Image Creation, it will be included the image.
+config building-blocks-sub2-domain_API-Account-libOAuth
+ bool "liboauth"
+ help
+ Functions implementing the OAuth Core RFC 5849 protocol.
+endmenu