1. 12 May, 2016 9 commits
  2. 11 May, 2016 17 commits
  3. 10 May, 2016 12 commits
  4. 09 May, 2016 2 commits
    • Tilman Dilo's avatar
      crypto/cipher: execute AES-GCM decryption example · 9af83462
      Tilman Dilo authored
      The decryption example for AES-GCM was not executed, hiding the fact
      that the provided ciphertext could not be authenticated.
      
      This commit adds the required output comment, replaces the ciphertext
      with a working example, and removes an unnecessary string conversion
      along the way.
      
      Change-Id: Ie6729ca76cf4a56c48b33fb3b39872105faa604b
      Reviewed-on: https://go-review.googlesource.com/22953Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      9af83462
    • Brad Fitzpatrick's avatar
      time: don't depend on the io package · d88261fb
      Brad Fitzpatrick authored
      The time package has never depended on the io package until
      a recent change during Go 1.7 to use the io.Seek* constants.
      
      The go/build dependency check didn't catch this because "time" was
      allowed to depend on meta package group "L0", which included "io".
      
      Adding the "io" package broke one of Dmitry's tools. The tool is
      fixable, but it's also not necessary for us to depend on "io" at all
      for some constants. Mirror the constants instead, and change
      deps_test.go to prevent an io dependency in the future.
      
      Change-Id: I74325228565279a74fa4a2f419643f5710e3e09f
      Reviewed-on: https://go-review.googlesource.com/22960
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      d88261fb