renaming_2: gofix -r go1pkgrename src/pkg/[a-l]*

R=rsc
CC=golang-dev
https://golang.org/cl/5358041
This commit is contained in:
Rob Pike 2011-11-08 15:40:58 -08:00
parent 3d2f7f086e
commit 1530d25d4f
4 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,6 @@
package main package main
import ( import (
"big"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"crypto/x509" "crypto/x509"
@ -16,6 +15,7 @@ import (
"encoding/pem" "encoding/pem"
"flag" "flag"
"log" "log"
"math/big"
"os" "os"
"time" "time"
) )

View File

@ -5,7 +5,7 @@
package tls package tls
import ( import (
"rand" "math/rand"
"reflect" "reflect"
"testing" "testing"
"testing/quick" "testing/quick"

View File

@ -5,12 +5,12 @@
package tls package tls
import ( import (
"big"
"bytes" "bytes"
"crypto/rsa" "crypto/rsa"
"encoding/hex" "encoding/hex"
"flag" "flag"
"io" "io"
"math/big"
"net" "net"
"strconv" "strconv"
"strings" "strings"

View File

@ -5,7 +5,6 @@
package tls package tls
import ( import (
"big"
"crypto" "crypto"
"crypto/elliptic" "crypto/elliptic"
"crypto/md5" "crypto/md5"
@ -14,6 +13,7 @@ import (
"crypto/x509" "crypto/x509"
"errors" "errors"
"io" "io"
"math/big"
) )
// rsaKeyAgreement implements the standard TLS key agreement where the client // rsaKeyAgreement implements the standard TLS key agreement where the client