mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto: replace encoding/binary in favour of internal/byteorder
Updates #54097 Change-Id: I827a5efd1736ce057b76f079466f2d9ead225898 GitHub-Last-Rev: 40af10469d85ce9f4bef4b40025589d9e44f43d6 GitHub-Pull-Request: golang/go#67321 Reviewed-on: https://go-review.googlesource.com/c/go/+/585017 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Keith Randall <khr@golang.org> Commit-Queue: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
This commit is contained in:
parent
eae001cbd4
commit
5197ef4589
3 changed files with 6 additions and 6 deletions
|
@ -2,11 +2,11 @@ package tls
|
|||
|
||||
import (
|
||||
"crypto/x509"
|
||||
"encoding/binary"
|
||||
"encoding/json"
|
||||
"encoding/pem"
|
||||
"flag"
|
||||
"fmt"
|
||||
"internal/byteorder"
|
||||
"internal/testenv"
|
||||
"io"
|
||||
"log"
|
||||
|
@ -186,7 +186,7 @@ func bogoShim() {
|
|||
|
||||
// Write the shim ID we were passed as a little endian uint64
|
||||
shimIDBytes := make([]byte, 8)
|
||||
binary.LittleEndian.PutUint64(shimIDBytes, *shimID)
|
||||
byteorder.LePutUint64(shimIDBytes, *shimID)
|
||||
if _, err := conn.Write(shimIDBytes); err != nil {
|
||||
log.Fatalf("failed to write shim id: %s", err)
|
||||
}
|
||||
|
|
|
@ -10,10 +10,10 @@ import (
|
|||
"crypto/rsa"
|
||||
"crypto/x509"
|
||||
"encoding/base64"
|
||||
"encoding/binary"
|
||||
"encoding/pem"
|
||||
"errors"
|
||||
"fmt"
|
||||
"internal/byteorder"
|
||||
"io"
|
||||
"math/big"
|
||||
"net"
|
||||
|
@ -202,7 +202,7 @@ func (test *clientTest) connFromCommand() (conn *recordingConn, child *exec.Cmd,
|
|||
var serverInfo bytes.Buffer
|
||||
for _, ext := range test.extensions {
|
||||
pem.Encode(&serverInfo, &pem.Block{
|
||||
Type: fmt.Sprintf("SERVERINFO FOR EXTENSION %d", binary.BigEndian.Uint16(ext)),
|
||||
Type: fmt.Sprintf("SERVERINFO FOR EXTENSION %d", byteorder.BeUint16(ext)),
|
||||
Bytes: ext,
|
||||
})
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@ import (
|
|||
"crypto"
|
||||
"crypto/hmac"
|
||||
"crypto/rsa"
|
||||
"encoding/binary"
|
||||
"errors"
|
||||
"hash"
|
||||
"internal/byteorder"
|
||||
"io"
|
||||
"time"
|
||||
)
|
||||
|
@ -866,7 +866,7 @@ func (c *Conn) sendSessionTicket(earlyData bool) error {
|
|||
if _, err := c.config.rand().Read(ageAdd); err != nil {
|
||||
return err
|
||||
}
|
||||
m.ageAdd = binary.LittleEndian.Uint32(ageAdd)
|
||||
m.ageAdd = byteorder.LeUint32(ageAdd)
|
||||
|
||||
if earlyData {
|
||||
// RFC 9001, Section 4.6.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue