mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
Add support for TCRYPT volumes to GMountOperation
Add G_ASK_PASSWORD_TCRYPT flag to GAskPasswordFlags and add the following properties to GMountOperation: - hidden_volume [1] - system_volume [2] - pim [3] [1] https://www.veracrypt.fr/en/Hidden%20Volume.html [2] https://www.veracrypt.fr/en/System%20Encryption.html [3] https://www.veracrypt.fr/en/Personal%20Iterations%20Multiplier%20(PIM).html
This commit is contained in:
@@ -149,6 +149,21 @@ void g_mount_operation_set_choice (GMountOperation *op,
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
void g_mount_operation_reply (GMountOperation *op,
|
||||
GMountOperationResult result);
|
||||
GLIB_AVAILABLE_IN_2_58
|
||||
gboolean g_mount_operation_get_is_tcrypt_hidden_volume (GMountOperation *op);
|
||||
GLIB_AVAILABLE_IN_2_58
|
||||
void g_mount_operation_set_is_tcrypt_hidden_volume (GMountOperation *op,
|
||||
gboolean hidden_volume);
|
||||
GLIB_AVAILABLE_IN_2_58
|
||||
gboolean g_mount_operation_get_is_tcrypt_system_volume (GMountOperation *op);
|
||||
GLIB_AVAILABLE_IN_2_58
|
||||
void g_mount_operation_set_is_tcrypt_system_volume (GMountOperation *op,
|
||||
gboolean system_volume);
|
||||
GLIB_AVAILABLE_IN_2_58
|
||||
guint g_mount_operation_get_pim (GMountOperation *op);
|
||||
GLIB_AVAILABLE_IN_2_58
|
||||
void g_mount_operation_set_pim (GMountOperation *op,
|
||||
guint pim);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
Reference in New Issue
Block a user