Wpis z mikrobloga

@slucham-psa-jak-gra: Mam takie pytanie. W bazie mam hasła zakodowane przez md5 niby dodałem :

auth.jdbcAuthentication().dataSource(dataSource)
.passwordEncoder(new Md5PasswordEncoder())
.usersByUsernameQuery(
"...")
.authoritiesByUsernameQuery(
".....");

lecz niestety hasło nie jest odkodowane. Masz jakiś pomysł co trzeba jeszcze dodać żeby działo?
Z góry dzięki
@arthurn: mam tylko propertiesy do bazy danych:
# DB
spring.jpa.database=POSTGRESQL
spring.datasource.platform=postgres
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=create-drop
spring.database.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/webprojectdb
spring.datasource.username=postgres
spring.datasource.password=postgres