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
5
5
public const string LocalizationSourceName = "AbpProjectName" ;
6
6
7
7
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}}" ;
8
13
}
9
14
}
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ public override void PreInitialize()
11
11
Configuration . Auditing . IsEnabledForAnonymousUsers = true ;
12
12
13
13
AbpProjectNameLocalizationConfigurer . Configure ( Configuration . Localization ) ;
14
+
15
+ Configuration . Settings . SettingEncryptionConfiguration . DefaultPassPhrase = AbpProjectNameConsts . DefaultPassPhrase ;
14
16
}
15
17
16
18
public override void Initialize ( )
You can’t perform that action at this time.
0 commit comments