(hash, secret string)
| 142 | } |
| 143 | |
| 144 | func verifySecret(hash, secret string) bool { |
| 145 | return bcrypt.CompareHashAndPassword([]byte(hash), []byte(secret)) == nil |
| 146 | } |
| 147 | |
| 148 | func verifyPKCE(codeVerifier, codeChallenge, method string) bool { |
| 149 | if method != "S256" { |
no outgoing calls
no test coverage detected