Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta (tmow) <antenore@simbiosi.org>2022-01-11 19:06:38 +0300
committerAntenore Gatta (tmow) <antenore@simbiosi.org>2022-01-11 19:06:38 +0300
commit2849b6d6200b8953457c5e55dbe8495c7d5fb80c (patch)
treee0b2e04d12cd965d04d825f4dce2cf687b091abf /src/remmina_pref.h
parentf45d845161150577d3578275b68514832d7bd98a (diff)
Fixing password unlocking - unlocked = FALSE
Diffstat (limited to 'src/remmina_pref.h')
-rw-r--r--src/remmina_pref.h9
1 files changed, 9 insertions, 0 deletions
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
@@ -81,6 +81,14 @@ enum {
};
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
FLOATING_TOOLBAR_VISIBILITY_DISABLE = 2
@@ -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 */