Added the possibility to automatically encrypt/decrypt a configuration value by setting "Encrypted" in the ini to true. Also added a small OAuth example in the ImgurUtils, for later usage.

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2014 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-09-09 13:53:53 +00:00
parent b2ea24fd9a
commit 79cbe548b0
4 changed files with 41 additions and 2 deletions

View file

@ -50,6 +50,8 @@ namespace Greenshot.IniFile {
public string Separator = ",";
public string DefaultValue;
public string LanguageKey;
// If Encrypted is set to true, the value will be decrypted on load and encrypted on save
public bool Encrypted = false;
public bool FixedValue = false;
public bool ExcludeIfNull=false;