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

Security: fix TokenMetaData equals and hashcode #30347

Merged
merged 7 commits into from
May 10, 2018

Commits on May 2, 2018

  1. Security: fix TokenMetaData equals and hashcode

    The TokenMetaData equals method compared byte arrays using `.equals` on
    the arrays themselves, which is the equivalent of an `==` check. This
    means that a seperate byte[] with the same contents would not be
    considered equivalent to the existing one, even though it should be.
    
    The method has been updated to use `Array#equals` and similarly the
    hashcode method has been updated to call `Arrays#hashCode` instead of
    calling hashcode on the array itself.
    jaymode committed May 2, 2018
    Configuration menu
    Copy the full SHA
    ed8d7ec View commit details
    Browse the repository at this point in the history

Commits on May 4, 2018

  1. Configuration menu
    Copy the full SHA
    2c586d2 View commit details
    Browse the repository at this point in the history
  2. add javadoc

    jaymode committed May 4, 2018
    Configuration menu
    Copy the full SHA
    445d890 View commit details
    Browse the repository at this point in the history
  3. changelog

    jaymode committed May 4, 2018
    Configuration menu
    Copy the full SHA
    0ce0479 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2018

  1. Configuration menu
    Copy the full SHA
    090b55f View commit details
    Browse the repository at this point in the history

Commits on May 10, 2018

  1. Configuration menu
    Copy the full SHA
    aa70f44 View commit details
    Browse the repository at this point in the history
  2. remove changelog entry

    jaymode committed May 10, 2018
    Configuration menu
    Copy the full SHA
    3239f21 View commit details
    Browse the repository at this point in the history