瀏覽代碼

Change package trs to th5

master
Henry Case 5 年之前
父節點
當前提交
71ad89487d
共有 25 個檔案被更改,包括 25 行新增25 行删除
  1. +1
    -1
      13.go
  2. +1
    -1
      alert.go
  3. +1
    -1
      auth.go
  4. +1
    -1
      auth_test.go
  5. +1
    -1
      cipher_suites.go
  6. +1
    -1
      common.go
  7. +1
    -1
      conn.go
  8. +1
    -1
      conn_test.go
  9. +1
    -1
      example_test.go.TEMPORARILY_DISABLED
  10. +1
    -1
      handshake_client.go
  11. +1
    -1
      handshake_client_test.go
  12. +1
    -1
      handshake_messages.go
  13. +1
    -1
      handshake_messages_test.go
  14. +1
    -1
      handshake_server.go
  15. +1
    -1
      handshake_server_test.go
  16. +1
    -1
      handshake_test.go
  17. +1
    -1
      hkdf.go
  18. +1
    -1
      key_agreement.go
  19. +1
    -1
      prf.go
  20. +1
    -1
      prf_test.go
  21. +1
    -1
      subcerts.go
  22. +1
    -1
      subcerts_test.go
  23. +1
    -1
      ticket.go
  24. +1
    -1
      tls.go
  25. +1
    -1
      tls_test.go

+ 1
- 1
13.go 查看文件

@@ -1,4 +1,4 @@
package trs
package th5

import (
"bytes"


+ 1
- 1
alert.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import "strconv"



+ 1
- 1
auth.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"crypto"


+ 1
- 1
auth_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"crypto"


+ 1
- 1
cipher_suites.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"crypto"


+ 1
- 1
common.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"container/list"


+ 1
- 1
conn.go 查看文件

@@ -4,7 +4,7 @@

// TLS low level connection and record layer

package trs
package th5

import (
"bytes"


+ 1
- 1
conn_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


+ 1
- 1
example_test.go.TEMPORARILY_DISABLED 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs_test
package th5_test

import (
"crypto/tls"


+ 1
- 1
handshake_client.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


+ 1
- 1
handshake_client_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


+ 1
- 1
handshake_messages.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


+ 1
- 1
handshake_messages_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


+ 1
- 1
handshake_server.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"crypto"


+ 1
- 1
handshake_server_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


+ 1
- 1
handshake_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bufio"


+ 1
- 1
hkdf.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

// Mostly derived from golang.org/x/crypto/hkdf, but with an exposed
// Extract API.


+ 1
- 1
key_agreement.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"crypto"


+ 1
- 1
prf.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"crypto"


+ 1
- 1
prf_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"encoding/hex"


+ 1
- 1
subcerts.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

// Delegated credentials for TLS
// (https://tools.ietf.org/html/draft-ietf-tls-subcerts-02) is an IETF Internet


+ 1
- 1
subcerts_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"crypto"


+ 1
- 1
ticket.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


+ 1
- 1
tls.go 查看文件

@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.

// Package tls partially implements TLS 1.2, as specified in RFC 5246.
package trs
package th5

// BUG(agl): The crypto/tls package only implements some countermeasures
// against Lucky13 attacks on CBC-mode encryption, and only on SHA1


+ 1
- 1
tls_test.go 查看文件

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package trs
package th5

import (
"bytes"


Loading…
取消
儲存