Uploaded image for project: 'Maven Surefire'
  1. Maven Surefire
  2. SUREFIRE-1865

ChecksumCalculator getSha1 does not compute checksums correctly

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 2.22.3, 3.0.0-M6
    • None
    • None

    Description

      ChecksumCalculator does the following in getSha1:

      md.update( configValue.getBytes( ISO_8859_1 ), 0, configValue.length() );
      

      This isn't using the right length, because configValue.length() is a length in characters, not bytes. This will lead to the wrong length being used for any strings that contain characters that aren't encoded in a single byte.

      Additionally, I believe that this class can be used to compute checksums on strings that fall outside the ISO_8859_1 character set, so UTF_8 would be a better choice.

      I ran into this when defining a test property that contained Cyrillic characters and emojis.

      Attachments

        Issue Links

          Activity

            People

              tibordigana Tibor Digana
              gian Gian Merlino
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: