From 1530d25d4f7021c4436f9fe6a14a7d7949a0a3d0 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 8 Nov 2011 15:40:58 -0800 Subject: [PATCH] renaming_2: gofix -r go1pkgrename src/pkg/[a-l]* R=rsc CC=golang-dev https://golang.org/cl/5358041 --- generate_cert.go | 2 +- handshake_messages_test.go | 2 +- handshake_server_test.go | 2 +- key_agreement.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/generate_cert.go b/generate_cert.go index ee8784c..c4463ff 100644 --- a/generate_cert.go +++ b/generate_cert.go @@ -8,7 +8,6 @@ package main import ( - "big" "crypto/rand" "crypto/rsa" "crypto/x509" @@ -16,6 +15,7 @@ import ( "encoding/pem" "flag" "log" + "math/big" "os" "time" ) diff --git a/handshake_messages_test.go b/handshake_messages_test.go index dc68a12..87e8f7e 100644 --- a/handshake_messages_test.go +++ b/handshake_messages_test.go @@ -5,7 +5,7 @@ package tls import ( - "rand" + "math/rand" "reflect" "testing" "testing/quick" diff --git a/handshake_server_test.go b/handshake_server_test.go index f2b0a14..bc37979 100644 --- a/handshake_server_test.go +++ b/handshake_server_test.go @@ -5,12 +5,12 @@ package tls import ( - "big" "bytes" "crypto/rsa" "encoding/hex" "flag" "io" + "math/big" "net" "strconv" "strings" diff --git a/key_agreement.go b/key_agreement.go index ba34606..08fb852 100644 --- a/key_agreement.go +++ b/key_agreement.go @@ -5,7 +5,6 @@ package tls import ( - "big" "crypto" "crypto/elliptic" "crypto/md5" @@ -14,6 +13,7 @@ import ( "crypto/x509" "errors" "io" + "math/big" ) // rsaKeyAgreement implements the standard TLS key agreement where the client