Categorygithub.com/nirasan/go-oauth-pkce-code-verifier
modulepackage
0.0.0-20220510032225-4f9f17eaec4c
Repository: https://github.com/nirasan/go-oauth-pkce-code-verifier.git
Documentation: pkg.go.dev

# README

go-oauth-pkce-code-verifier

OAuth PKCE code_verifier and code_challenge generator implimented golang.

How to use

// Create code_verifier
v := CreateCodeVerifier()
code_verifier := v.String()

// Create code_challenge with plain method
code_challenge := v.CodeChallengeS256()
code_challenge_method := "plain"

// Create code_challenge with S256 method
code_challenge := v.CodeChallengeS256()
code_challenge_method := "S256"

# Functions

No description provided by the author
No description provided by the author
No description provided by the author

# Constants

No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author