From 2849b6d6200b8953457c5e55dbe8495c7d5fb80c Mon Sep 17 00:00:00 2001 From: "Antenore Gatta (tmow)" Date: Tue, 11 Jan 2022 17:06:38 +0100 Subject: Fixing password unlocking - unlocked = FALSE --- src/remmina_pref.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/remmina_pref.h') diff --git a/src/remmina_pref.h b/src/remmina_pref.h index d417f54c4..1f7e9f0f1 100644 --- a/src/remmina_pref.h +++ b/src/remmina_pref.h @@ -80,6 +80,14 @@ enum { REMMINA_TAB_NONE = 3 }; +enum { + RM_ENC_MODE_SECRET = 0, /* Using libsecret */ + RM_ENC_MODE_SODIUM_INTERACTIVE = 1, /* Using libsodium */ + RM_ENC_MODE_SODIUM_MODERATE = 2, /* Using libsodium */ + RM_ENC_MODE_SODIUM_SENSITIVE = 3, /* Using libsodium */ + RM_ENC_MODE_GCRYPT = 4 /* Using GCrypt */ +}; + enum { FLOATING_TOOLBAR_VISIBILITY_PEEKING = 0, FLOATING_TOOLBAR_VISIBILITY_INVISIBLE = 1, //"Invisible" corresponds to the "Hidden" option in the drop-down @@ -173,6 +181,7 @@ typedef struct _RemminaPref { gint unlock_timeout; gboolean lock_connect; gboolean lock_edit; + gint enc_mode; gboolean audit; gboolean trust_all; /* In RemminaPrefDialog terminal tab */ -- cgit v1.2.3