blob: c2780cd84552426afc4e2c664af2422337980d01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
menu "Account Native API Group"
config building-blocks-sub2-domain_API-Account-Account_Manager
bool
prompt "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
prompt "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
prompt "dummyasm"
help
This is a dummy ASM for testing FIDO client.
endif
config building-blocks-sub2-domain_API-Account-OAuth2
bool
prompt "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
prompt "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_Manager
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
prompt "liboauth"
help
Functions implementing the OAuth Core RFC 5849 protocol.
endmenu
|