Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for custom token types through generics #39

Merged
merged 7 commits into from
Sep 16, 2024
Merged

Commits on Sep 11, 2024

  1. Configuration menu
    Copy the full SHA
    7d4b73a View commit details
    Browse the repository at this point in the history
  2. API over EncodedTokenParts to allow failable encoding

    In order to retain the non-failableness of certain crypto methods
    we move encoding outside of the crypto execution to permit callers
    to do encoding first (which may fail) and then perform the crypto
    call (which generally is guaranteed to succeed with no error handling
    required).
    aidantwoods committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    666b372 View commit details
    Browse the repository at this point in the history
  3. Update test vectors

    aidantwoods committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    1dbe35b View commit details
    Browse the repository at this point in the history
  4. Rename to TokenClaimsAndFooter

    This should hopefully avoid any confusion that this is somehow
    a fully formed token (mistaking "encoded" for "encryped" in the
    prior name).
    aidantwoods committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    f7ee317 View commit details
    Browse the repository at this point in the history
  5. Bump tested go versions

    aidantwoods committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    411d251 View commit details
    Browse the repository at this point in the history
  6. Improve doc comment

    aidantwoods committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    b949113 View commit details
    Browse the repository at this point in the history
  7. Remove unused setters

    aidantwoods committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    74c37da View commit details
    Browse the repository at this point in the history