diff options
| author | cui fliter <imcusg@gmail.com> | 2022-09-16 09:30:45 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2022-09-19 17:36:07 +0000 |
| commit | 35f4265a4bc0c3c52524765c293aced1e60f06b7 (patch) | |
| tree | 30dbafb6715acd58076103adda1b088328bb1484 /ssh/example_test.go | |
| parent | c86fa9a7ed909e2f2a8ab8298254fca727aba16a (diff) | |
| download | go-x-crypto-35f4265a4bc0c3c52524765c293aced1e60f06b7.tar.xz | |
all: replace io/ioutil with io and os package
For golang/go#45557
Change-Id: I447530cc66896aef7a8d528ccb8d095b80e3cf47
GitHub-Last-Rev: 5f385ff46487ac318bd1147cdbbd26bb0ffd0426
GitHub-Pull-Request: golang/crypto#230
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/430797
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Meng Zhuo <mzh@golangcn.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'ssh/example_test.go')
| -rw-r--r-- | ssh/example_test.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ssh/example_test.go b/ssh/example_test.go index 8a0aaef..bee6796 100644 --- a/ssh/example_test.go +++ b/ssh/example_test.go @@ -8,7 +8,6 @@ import ( "bufio" "bytes" "fmt" - "io/ioutil" "log" "net" "net/http" @@ -24,7 +23,7 @@ func ExampleNewServerConn() { // Public key authentication is done by comparing // the public key of a received connection // with the entries in the authorized_keys file. - authorizedKeysBytes, err := ioutil.ReadFile("authorized_keys") + authorizedKeysBytes, err := os.ReadFile("authorized_keys") if err != nil { log.Fatalf("Failed to load authorized_keys, err: %v", err) } @@ -67,7 +66,7 @@ func ExampleNewServerConn() { }, } - privateBytes, err := ioutil.ReadFile("id_rsa") + privateBytes, err := os.ReadFile("id_rsa") if err != nil { log.Fatal("Failed to load private key: ", err) } @@ -225,7 +224,7 @@ func ExamplePublicKeys() { // // If you have an encrypted private key, the crypto/x509 package // can be used to decrypt it. - key, err := ioutil.ReadFile("/home/user/.ssh/id_rsa") + key, err := os.ReadFile("/home/user/.ssh/id_rsa") if err != nil { log.Fatalf("unable to read private key: %v", err) } |
