Skip to content

Commit

Permalink
Moved crypto/tls into cfss repository
Browse files Browse the repository at this point in the history
  • Loading branch information
koshatul authored and kisom committed Jul 26, 2018
1 parent 7478155 commit 56268a6
Show file tree
Hide file tree
Showing 122 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion scan/connectivity.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ package scan

import (
"bufio"
"crypto/tls"
"errors"
"fmt"
"io"
"net"

"github.com/cloudflare/cfssl/scan/crypto/tls"
)

// Connectivity contains scanners testing basic connectivity to the host
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion scan/pki.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package scan

import (
"bytes"
"crypto/tls"
"crypto/x509"
"fmt"
"time"

"github.com/cloudflare/cfssl/helpers"
"github.com/cloudflare/cfssl/revoke"
"github.com/cloudflare/cfssl/scan/crypto/tls"
)

// PKI contains scanners for the Public Key Infrastructure.
Expand Down
2 changes: 1 addition & 1 deletion scan/scan_common.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package scan

import (
"crypto/tls"
"crypto/x509"
"net"
"net/http"
Expand All @@ -11,6 +10,7 @@ import (

"github.com/cloudflare/cfssl/helpers"
"github.com/cloudflare/cfssl/log"
"github.com/cloudflare/cfssl/scan/crypto/tls"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion scan/tls_handshake.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package scan

import (
"bytes"
"crypto/tls"
"errors"
"fmt"
"net"
"strings"

"github.com/cloudflare/cfssl/helpers"
"github.com/cloudflare/cfssl/scan/crypto/tls"
)

// Sentinel for failures in sayHello. Should always be caught.
Expand Down
2 changes: 1 addition & 1 deletion scan/tls_session.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package scan

import "crypto/tls"
import "github.com/cloudflare/cfssl/scan/crypto/tls"

// TLSSession contains tests of host TLS Session Resumption via
// Session Tickets and Session IDs
Expand Down

0 comments on commit 56268a6

Please sign in to comment.