forked from Rrycbarm/flipperZeroPasswordManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.fam
More file actions
23 lines (23 loc) · 688 Bytes
/
application.fam
File metadata and controls
23 lines (23 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
App(
appid="password_manager",
name="Password Manager",
apptype=FlipperAppType.EXTERNAL,
entry_point="password_manager_app",
requires=["gui", "usb_hid", "bt"],
fap_libs=["ble_profile"],
stack_size=4 * 1024,
fap_category="Tools",
fap_icon="key.png",
fap_description="This app stores your usernames and password and can write them on your PC acting as a keyboard",
fap_version=(1, 3),
fap_private_libs=[
Lib(
name="FlipCrypt",
sources=[
"ciphers/aes.c",
"hashes/sha2.c",
],
cincludes=["lib/FlipCrypt/ciphers", "lib/FlipCrypt/hashes"],
),
],
)