Skip to content

Commit

Permalink
Added jasypt-spring-boot dependency to support open text password enc…
Browse files Browse the repository at this point in the history
…ryption (#102)
  • Loading branch information
xdurvak authored Jun 4, 2018
1 parent 0bf03ca commit 1b72f0e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.9.9
- - Added jasypt-spring-boot-starter dependency to support open text encryption

## 0.9.8
- Removed Protocol Interface dependency
- Uplifted semantics version to 0.4.1
Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ plugins{
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://repo.spring.io/libs-milestone' }
mavenLocal()
}

Expand All @@ -53,11 +54,12 @@ subprojects {
targetCompatibility = 1.8

//Latest version for generate
version = "0.9.8"
version = "0.9.9"

repositories {
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://repo.spring.io/libs-milestone' }
mavenLocal()
}

Expand All @@ -70,6 +72,7 @@ subprojects {
compile("org.springframework.boot:spring-boot-starter-security:$sprintBootVersion")
compile("org.springframework.security:spring-security-ldap:4.1.3.RELEASE")
compile("org.apache.directory.server:apacheds-server-jndi:1.5.5")
compile 'com.github.ulisesbocchio:jasypt-spring-boot-starter:2.0.0'
// Test framework
testCompile("junit:junit:4.12")
testCompile("org.assertj:assertj-core:3.4.1")
Expand Down
5 changes: 4 additions & 1 deletion service/src/main/resources/config.template.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@
logging.level.org.springframework.web: ERROR
logging.level.com.ericsson.eiffel.remrem.producer: ERROR

# Jasypt configurations
jasypt.encryptor.password:<Any value which was used at the time of encrypting the original password will be used at runtime to decrypt the same>

#Ldap authentication configurations

activedirectory.generate.enabled:false
activedirectory.ldapUrl :
activedirectory.managerPassword :
activedirectory.managerPassword : ENC(<encrypted password>) or password
activedirectory.managerDn:
activedirectory.rootDn :
activedirectory.userSearchFilter:

0 comments on commit 1b72f0e

Please sign in to comment.