File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
src/AbpCompanyName.AbpProjectName.Core Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -5,5 +5,10 @@ public class AbpProjectNameConsts
55 public const string LocalizationSourceName = "AbpProjectName" ;
66
77 public const bool MultiTenancyEnabled = true ;
8+
9+ /// <summary>
10+ /// Default pass phrase for SimpleStringCipher decrypt/encrypt operations
11+ /// </summary>
12+ public const string DefaultPassPhrase = "{{DEFAULT_PASS_PHRASE_HERE}}" ;
813 }
914}
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ public override void PreInitialize()
4343 Configuration . Authorization . Providers . Add < AbpProjectNameAuthorizationProvider > ( ) ;
4444
4545 Configuration . Settings . Providers . Add < AppSettingProvider > ( ) ;
46+
47+ Configuration . Settings . SettingEncryptionConfiguration . DefaultPassPhrase = AbpProjectNameConsts . DefaultPassPhrase ;
4648 }
4749
4850 public override void Initialize ( )
You can’t perform that action at this time.
0 commit comments