Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some thing is missing in documents #163

Open
amoyiki opened this issue Dec 19, 2017 · 2 comments
Open

some thing is missing in documents #163

amoyiki opened this issue Dec 19, 2017 · 2 comments

Comments

@amoyiki
Copy link

amoyiki commented Dec 19, 2017

I want to run Authentication example
code with python3, but not work
and raise Unicode-objects must be encoded before hashin

def encrypt(self, password):
        """Encrypt password using hashlib and current salt.
        """
        return str(hashlib.sha1(password + str(self.salt))\
            .hexdigest())

i think above code Should be changed to

def encrypt(self, password):
        """Encrypt password using hashlib and current salt.
        """
        return str(hashlib.sha1((password + str(self.salt)).encode('utf8')).hexdigest())

btw, raise an AttributeError: 'User' object has no attribute 'salt'
When i use user.check_password(password) in login method, because current obj has not salt

@dkellner
Copy link
Collaborator

Oh well, these examples indeed have not been touched for a long time :). If you have a working solution by now, would me mind creating a PR with a new runnable example in the examples/ directory?

@amoyiki
Copy link
Author

amoyiki commented Dec 21, 2017

@dkellner of course

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants