Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: MicahParks/keyfunc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.0
Choose a base ref
...
head repository: MicahParks/keyfunc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.0
Choose a head ref
  • 5 commits
  • 37 files changed
  • 3 contributors

Commits on Oct 15, 2023

  1. Add example for multiple JWKS with given keys

    Micah Parks committed Oct 15, 2023
    Copy the full SHA
    4e71e0f View commit details
  2. Merge pull request #95 from MicahParks/multiple-with-given

    Add example for multiple JWKS with given keys
    MicahParks authored Oct 15, 2023
    Copy the full SHA
    ab22bfc View commit details

Commits on Dec 11, 2023

  1. Copy the full SHA
    1f99d02 View commit details
  2. Merge pull request #96 from sesaquecruz/refactor/jwks-refresh-error

    Remove nested if statement in JWKS refresh error handling
    MicahParks authored Dec 11, 2023
    Copy the full SHA
    ed18f7d View commit details

Commits on Dec 16, 2023

  1. Copy the full SHA
    f702240 View commit details
Showing with 548 additions and 3,467 deletions.
  1. +40 −181 README.md
  2. +0 −25 alg_test.go
  3. +0 −108 checksum_test.go
  4. +0 −69 ecdsa.go
  5. +0 −30 ecdsa_test.go
  6. +0 −29 eddsa.go
  7. +0 −130 example_jwks.json
  8. +6 −23 examples/aws_cognito/main.go
  9. +0 −47 examples/ctx/main.go
  10. +0 −48 examples/custom/main.go
  11. +0 −22 examples/custom/method/method.go
  12. +0 −93 examples/given/main.go
  13. +65 −22 examples/hmac/main.go
  14. +87 −0 examples/http/main.go
  15. +0 −51 examples/interval/main.go
  16. +24 −7 examples/json/main.go
  17. +7 −24 examples/keycloak/main.go
  18. +93 −0 examples/multi_with_given/main.go
  19. +0 −63 examples/recommended_options/main.go
  20. +0 −247 get.go
  21. +0 −164 get_test.go
  22. +0 −115 given.go
  23. +0 −287 given_test.go
  24. +5 −3 go.mod
  25. +4 −2 go.sum
  26. +0 −239 jwks.go
  27. +0 −658 jwks_test.go
  28. +97 −32 keyfunc.go
  29. +120 −0 keyfunc_test.go
  30. +0 −72 multiple.go
  31. +0 −107 multiple_test.go
  32. +0 −28 oct.go
  33. +0 −165 options.go
  34. +0 −129 options_test.go
  35. +0 −178 override_test.go
  36. +0 −26 padding_test.go
  37. +0 −43 rsa.go
Loading