Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/crypto
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.27.0
Choose a base ref
...
head repository: golang/crypto
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.28.0
Choose a head ref
  • 4 commits
  • 8 files changed
  • 4 contributors

Commits on Sep 10, 2024

  1. bn256: add missing symbols in comment

    Change-Id: Ibd48a070bd8ce35ef5795a8b73bc4ecac43a993e
    Reviewed-on: https://go-review.googlesource.com/c/crypto/+/611735
    Run-TryBot: shuang cui <imcusg@gmail.com>
    Commit-Queue: Ian Lance Taylor <iant@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Roland Shoemaker <roland@golang.org>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    cuishuang authored and gopherbot committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    9e92970 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. ssh: return ServerAuthError after too many auth failures

    if a client is disconnected due to too many authentication attempts
    we should return a ServerAuthError instead of a generic error.
    
    Some users check the error returned by NewServerConn to determine
    whether or not a client attempted to authenticate.
    
    Fixes golang/go#69191
    
    Change-Id: If68fcecdefd6c810fe9df8256b1216e320d8a916
    Reviewed-on: https://go-review.googlesource.com/c/crypto/+/566398
    Reviewed-by: Filippo Valsorda <filippo@golang.org>
    Reviewed-by: Tim King <taking@google.com>
    Auto-Submit: Nicola Murino <nicola.murino@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    drakkan authored and gopherbot committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    42ee18b View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. sha3: fix cSHAKE initialization for extremely large N and or S

    While both impractical and unlikely, the multiplication could overflow
    on 32-bit architectures.
    
    The 64-bit architecture case is unaffected by both the maximum length
    of Go slices being too small to trigger the overflow (everything except
    s390), and it being safe to assume no machine has more than 2 EiB of
    memory.
    
    Fixes golang/go#66232
    
    Change-Id: I19c15d42d2d6af35e296697159d43d02f513e614
    GitHub-Last-Rev: 503e180
    GitHub-Pull-Request: #286
    Reviewed-on: https://go-review.googlesource.com/c/crypto/+/570876
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: David Chase <drchase@google.com>
    Reviewed-by: Filippo Valsorda <filippo@golang.org>
    Auto-Submit: Filippo Valsorda <filippo@golang.org>
    Reviewed-by: Michael Knyszek <mknyszek@google.com>
    Yawning authored and gopherbot committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    a0819fb View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. go.mod: update golang.org/x dependencies

    Update golang.org/x dependencies to their latest tagged versions.
    
    Change-Id: Id321d3b5909ecb66c0311ba86008509c7895863b
    Reviewed-on: https://go-review.googlesource.com/c/crypto/+/617958
    Auto-Submit: Gopher Robot <gobot@golang.org>
    Reviewed-by: David Chase <drchase@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    gopherbot committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    adef4cc View commit details
    Browse the repository at this point in the history
Loading