diff options
| author | Filippo Valsorda <filippo@golang.org> | 2024-10-24 16:10:53 +0200 |
|---|---|---|
| committer | Filippo Valsorda <filippo@golang.org> | 2024-11-18 16:39:11 +0000 |
| commit | 15b7046309b6d8e8ab411272d4320e51fe6dfd7d (patch) | |
| tree | b823d1297ea7e4e27346b6f4fceb7a365c70a50a /src/crypto/cipher | |
| parent | 44b2ba721ba53efdc72fb2970d57ea75da6e0158 (diff) | |
| download | go-15b7046309b6d8e8ab411272d4320e51fe6dfd7d.tar.xz | |
crypto/internal/alias: move to crypto/internal/fips/alias
For #69536
Change-Id: Id0bb46fbb39c205ebc903e72e706bbbaaeec6dbd
Reviewed-on: https://go-review.googlesource.com/c/go/+/622275
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Roland Shoemaker <roland@golang.org>
Diffstat (limited to 'src/crypto/cipher')
| -rw-r--r-- | src/crypto/cipher/cbc.go | 2 | ||||
| -rw-r--r-- | src/crypto/cipher/cfb.go | 2 | ||||
| -rw-r--r-- | src/crypto/cipher/ctr.go | 2 | ||||
| -rw-r--r-- | src/crypto/cipher/gcm.go | 2 | ||||
| -rw-r--r-- | src/crypto/cipher/ofb.go | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/crypto/cipher/cbc.go b/src/crypto/cipher/cbc.go index 51a142071f..61a6b7a396 100644 --- a/src/crypto/cipher/cbc.go +++ b/src/crypto/cipher/cbc.go @@ -13,7 +13,7 @@ package cipher import ( "bytes" - "crypto/internal/alias" + "crypto/internal/fips/alias" "crypto/subtle" ) diff --git a/src/crypto/cipher/cfb.go b/src/crypto/cipher/cfb.go index 7e3f9695b7..7a18f1c231 100644 --- a/src/crypto/cipher/cfb.go +++ b/src/crypto/cipher/cfb.go @@ -7,7 +7,7 @@ package cipher import ( - "crypto/internal/alias" + "crypto/internal/fips/alias" "crypto/subtle" ) diff --git a/src/crypto/cipher/ctr.go b/src/crypto/cipher/ctr.go index eac8e266cf..8974bf3d88 100644 --- a/src/crypto/cipher/ctr.go +++ b/src/crypto/cipher/ctr.go @@ -14,7 +14,7 @@ package cipher import ( "bytes" - "crypto/internal/alias" + "crypto/internal/fips/alias" "crypto/subtle" ) diff --git a/src/crypto/cipher/gcm.go b/src/crypto/cipher/gcm.go index 9b86b06c98..ec5090b326 100644 --- a/src/crypto/cipher/gcm.go +++ b/src/crypto/cipher/gcm.go @@ -5,7 +5,7 @@ package cipher import ( - "crypto/internal/alias" + "crypto/internal/fips/alias" "crypto/subtle" "errors" "internal/byteorder" diff --git a/src/crypto/cipher/ofb.go b/src/crypto/cipher/ofb.go index bdfc977d5e..339864f4e2 100644 --- a/src/crypto/cipher/ofb.go +++ b/src/crypto/cipher/ofb.go @@ -7,7 +7,7 @@ package cipher import ( - "crypto/internal/alias" + "crypto/internal/fips/alias" "crypto/subtle" ) |
