Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for I32And (0.82 sec)

  1. src/crypto/md5/md5_test.go

    // Tests a problem that is outlined in GitHub issue #29541
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    // different result.
    type unmarshalTest struct {
    	state string
    	sum   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1_test.go

    // Tests a problem that is outlined in GitHub issue #29543
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    // different result.
    type unmarshalTest struct {
    	state string
    	sum   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256_test.go

    // Tests a problem that is outlined in GitHub issue #29517
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    // different result.
    type unmarshalTest struct {
    	state string
    	sum   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top