0 purchases
pkce 1.0.3
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.