-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
21 lines (18 loc) · 783 Bytes
/
Kconfig
File metadata and controls
21 lines (18 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
config BFCFS
tristate "BFC image filesystem (read-only)"
depends on ZSTD_DECOMPRESS && CRYPTO && CRYPTO_AEAD && CRC32
select CRYPTO_CHACHA20POLY1305
help
Mount .bfc single-file images via a native filesystem (no FUSE).
BFC (Binary File Container) is a high-performance, single-file
container format that supports compression (Zstd) and encryption
(ChaCha20-Poly1305). This filesystem allows mounting BFC containers
directly in the kernel with O(log N) file lookups.
Features:
- Read-only mounting of .bfc containers
- Zstd decompression support
- ChaCha20-Poly1305 AEAD encryption/decryption
- Kernel keyring integration for encryption keys
- Fast random access with sorted index
- POSIX metadata preservation
If unsure, say N.