jexpresso-base-auth

A library providing basic functionality for authentication.

License

License

GroupId

GroupId

de.yourinspiration
ArtifactId

ArtifactId

jexpresso-base-auth
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

jexpresso-base-auth
A library providing basic functionality for authentication.
Project URL

Project URL

https://github.com/Yourinspiration/jexpresso-base-auth
Project Organization

Project Organization

Yourinspiration
Source Code Management

Source Code Management

https://github.com/Yourinspiration/jexpresso-base-auth.git

Download jexpresso-base-auth

How to add to project

<!-- https://jarcasting.com/artifacts/de.yourinspiration/jexpresso-base-auth/ -->
<dependency>
    <groupId>de.yourinspiration</groupId>
    <artifactId>jexpresso-base-auth</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/de.yourinspiration/jexpresso-base-auth/
implementation 'de.yourinspiration:jexpresso-base-auth:1.0.0'
// https://jarcasting.com/artifacts/de.yourinspiration/jexpresso-base-auth/
implementation ("de.yourinspiration:jexpresso-base-auth:1.0.0")
'de.yourinspiration:jexpresso-base-auth:jar:1.0.0'
<dependency org="de.yourinspiration" name="jexpresso-base-auth" rev="1.0.0">
  <artifact name="jexpresso-base-auth" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.yourinspiration', module='jexpresso-base-auth', version='1.0.0')
)
libraryDependencies += "de.yourinspiration" % "jexpresso-base-auth" % "1.0.0"
[de.yourinspiration/jexpresso-base-auth "1.0.0"]

Dependencies

compile (3)

Group / Artifact Type Version
org.tinylog : tinylog jar 0.9.1
org.mindrot : jbcrypt jar 0.3m
org.mongodb : mongo-java-driver jar 2.12.2

test (2)

Group / Artifact Type Version
junit : junit jar 4.11
org.mockito : mockito-all jar 1.9.5

Project Modules

There are no modules declared in this project.

About

This library provides basic functionality for authentication.

UserDetailsService

A UserDetailsService loads user details by username.

Implementations

  • JdbcUserDetailsService: Retrieves user data from a JDBC connection
  • MemoryUserDetailsService: Retrieves user data from memory
  • MongoDbUserDetailsService: Retrieves user data froma MongoDB database

PasswordEncoder

A PasswordEncoder encodes and checks plain text password.

Implementations

  • MD5PasswordEncoder: MD5 algorithm
  • PBKDF2PasswordEncoder: PDKDF2 algorithm
  • SHA256PasswordEncoder: sha-256 algorithm
  • SHA512PasswordEncoder: sha-512 algorithm
  • BCryptPasswordEncoder: Bcrypt algorithm
  • PlainTextPasswordEncoder: no algorithm just plaintext

Versions

Version
1.0.0