From 35f4265a4bc0c3c52524765c293aced1e60f06b7 Mon Sep 17 00:00:00 2001 From: cui fliter Date: Fri, 16 Sep 2022 09:30:45 +0000 Subject: 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 Reviewed-by: Ian Lance Taylor Reviewed-by: Meng Zhuo Run-TryBot: Ian Lance Taylor TryBot-Result: Gopher Robot Reviewed-by: Cherry Mui --- ssh/example_test.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'ssh/example_test.go') 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) } -- cgit v1.3