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 string ConnectionStringName = "Default" ;
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 @@ -11,6 +11,8 @@ public override void PreInitialize()
1111 Configuration . Auditing . IsEnabledForAnonymousUsers = true ;
1212
1313 AbpProjectNameLocalizationConfigurer . Configure ( Configuration . Localization ) ;
14+
15+ Configuration . Settings . SettingEncryptionConfiguration . DefaultPassPhrase = AbpProjectNameConsts . DefaultPassPhrase ;
1416 }
1517
1618 public override void Initialize ( )
You can’t perform that action at this time.
0 commit comments