libcryfs: Fix typo & version

This commit is contained in:
Matéo Duparc 2023-02-01 23:52:19 +01:00
parent a1c3f814d5
commit ba5df7390b
Signed by: hardcoresushi
GPG Key ID: AFE384344A45E13A
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ if(MSVC)
endif()
# Hardcoded version. Don't forget to change this when merging upstream!
set(GIT_VERSION "0.11.2-libcryfs")
set(GIT_VERSION "0.11.3-libcryfs")
add_subdirectory(vendor EXCLUDE_FROM_ALL)
add_subdirectory(src)

View File

@ -1,4 +1,4 @@
libcryfs is a re-design of the original [CryFS](https://github.com/cryfs/cryfs) code to work as a library. Volumes are not mounted with [FUSE](https://www.kernel.org/doc/html/latest/filesystems/fuse.html) but rather opened in memory and accessed through API calls. What the purpose ?
libcryfs is a re-design of the original [CryFS](https://github.com/cryfs/cryfs) code to work as a library. Volumes are not mounted with [FUSE](https://www.kernel.org/doc/html/latest/filesystems/fuse.html) but rather opened in memory and accessed through API calls. What's the purpose ?
- Allow the use of CryFS on platforms where FUSE is not available (such as Android)
- Reduce attack surface by restricting volumes access to only one process rather than one user