1. 24 Mar, 2015 15 commits
  2. 23 Mar, 2015 19 commits
  3. 21 Mar, 2015 1 commit
  4. 20 Mar, 2015 5 commits
    • Dr. Stephen Henson's avatar
      Add AES unwrap test with invalid key. · 77e127ea
      Dr. Stephen Henson authored
      
      
      This tests the unwrap algorithm with an invalid key. The result should
      be rejected without returning any plaintext.
      
      Reviewed-by: default avatarEmilia Käsper <emilia@openssl.org>
      77e127ea
    • Dr. Stephen Henson's avatar
      Fix memory leak. · 5724bd49
      Dr. Stephen Henson authored
      
      
      Reviewed-by: default avatarEmilia Käsper <emilia@openssl.org>
      5724bd49
    • Richard Godbee's avatar
      CRYPTO_128_unwrap(): Fix refactoring damage · e6abba3a
      Richard Godbee authored
      
      
      crypto/modes/wrap128.c was heavily refactored to support AES Key Wrap
      with Padding, and four bugs were introduced into CRYPTO_128_unwrap() at
      that time:
      
      - crypto_128_unwrap_raw()'s return value ('ret') is checked incorrectly,
        and the function immediately returns 'ret' in (almost) all cases.
        This makes the IV checking code later in the function unreachable, but
        callers think the IV check succeeded since CRYPTO_128_unwrap()'s
        return value is non-zero.
      
        FIX: Return 0 (error) if crypto_128_unwrap_raw() returned 0 (error).
      
      - crypto_128_unwrap_raw() writes the IV to the 'got_iv' buffer, not to
        the first 8 bytes of the output buffer ('out') as the IV checking code
        expects.  This makes the IV check fail.
      
        FIX: Compare 'iv' to 'got_iv', not 'out'.
      
      - The data written to the output buffer ('out') is "cleansed" if the IV
        check fails, but the code passes OPENSSL_cleanse() the input buffer
        length ('inlen') instead of the number of bytes that
        crypto_128_unwrap_raw() wrote to the output buffer ('ret').  This
        means that OPENSSL_cleanse() could potentially write past the end of
        'out'.
      
        FIX: Change 'inlen' to 'ret' in the OPENSSL_cleanse() call.
      
      - CRYPTO_128_unwrap() is returning the length of the input buffer
        ('inlen') instead of the number of bytes written to the output buffer
        ('ret').  This could cause the caller to read past the end of 'out'.
      
        FIX: Return 'ret' instead of 'inlen' at the end of the function.
      
      PR#3749
      
      Reviewed-by: default avatarStephen Henson <steve@openssl.org>
      Reviewed-by: default avatarEmilia Käsper <emilia@openssl.org>
      e6abba3a
    • Richard Godbee's avatar
      1062ecfc
    • Matt Caswell's avatar
      Add DTLS tests to make test · 3c381e54
      Matt Caswell authored
      
      
      Updated test/testssl script to include the new DTLS capability in ssltest.
      
      Reviewed-by: default avatarEmilia Käsper <emilia@openssl.org>
      3c381e54