RomeoDespres · GitHub

pkce (Proof Key for Code Exchange)

Simple Python module to generate PKCE code verifier and code challenge.

Installation

pip install pkce

Usage

>>> import pkce
>>> code_verifier, code_challenge = pkce.generate_pkce_pair()
>>> import pkce
>>> code_verifier = pkce.generate_code_verifier(length=128)
>>> code_challenge = pkce.get_code_challenge(code_verifier)

Additional information

Spec for the PKCE protocol can be found here.

About

Simple Python module to generate PKCE code verifier and code challenge

Resources

Readme

MIT license

Activity

Stars

29 stars

Watchers

1 watching

Forks

2 forks

Releases

Packages

Used by

Contributors

Languages

Read the original on github.com ↗