Code refactoring

This commit is contained in:
2023-03-29 09:24:34 +02:00
parent ef2ee6e43f
commit 6536ea3fb9

View File

@@ -5,15 +5,15 @@ namespace Password_Manager
static class ConfigFileManager
{
#region Config flags
/*Configuration: (format: fieldname=value)
/*Configuration: (format: fieldname=value)
password_store_path: path to the folder which contains the .gpg files
recipient: whose public key to use for encryption when a new password is created
*/
private static string CONFIGPATH = SpecialDirectories.CurrentUserApplicationData + "\\config.cfg";
private static char DELIMETER = '=';
private static string RECIPIENT = "recipient";
private static string PATH = "password_store_path";
password_store_path: path to the folder which contains the .gpg files
recipient: whose public key to use for encryption when a new password is created
*/
private static string CONFIGPATH = SpecialDirectories.CurrentUserApplicationData + "\\config.cfg";
private static char DELIMETER = '=';
private static string RECIPIENT = "recipient";
private static string PATH = "password_store_path";
#endregion
private static Config Configuration;