Code Monkey home page Code Monkey logo

django_crypto_auth's Introduction

django_crypto_auth

Documentation:

django_crypto_auth Documentation

Django Rest - Token Based Authentication

Response:

If user is successfully authenticated, response will return a JSON:

{
    "token": "token",
    "expiry": n,
    "refresh_token": "refresh token,
    "user": "username"
}

Settings:

- CRYPTO_AUTH_TOKEN_SHUFFLE: tuple | list *
    - Items have to be string letters from "a" to "j"
    - The order will determine how the token will be encrypted
    - You can use create_token_shuffle method from crypto_auth.helper to generate one

- CRYPTO_AUTH_TOKEN_SERIALIZER: string
    - Override django_crypto_auth Serializer
    - Format should be -> "myapp.serializer.SerializerClass"

- CRYPTO_AUTH_TOKEN_KEYWORD: str
    - Header keyword authentication
    - Default = "TSESSION"

- CRYPTO_AUTH_MAX_TOKEN_LIMIT: int
    - Max token limit per user
    - Default = 2

- CRYPTO_AUTH_SUBSET_LENGTH: int
    - Subset from Token
    - Has to be between 2 and 15
    - Default = 4

- CRYPTO_AUTH_TOKEN_EXPIRY: dict - tuple = ("<keyword>", n: int)
    - keyword should be:
        - seconds, minutes, hours, days or weeks
    - Default = ("minutes", 3)

Note:

LoginVIew from crypto_auth.views use DEFAULT_AUTHENTICATION_CLASSES from rest_framework.

More info Here.

if you want to override it, just do

class CustomView(LoginView):
    authentication_classes = [CustomAuthentication]

More info Here.

Test

# go to crypto_auth
$ cd django_crypto_auth

# move to test branch
$ git checkout test

# go back and run
$ cd ..
$ python manage.py test django_crypto_auth

django_crypto_auth's People

Contributors

marceb1296 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.