Skip to content

Commit 4b01425

Browse files
authored
Merge pull request #61 from essentialkaos/develop
Version 12.0.0
2 parents af6f721 + d513f41 commit 4b01425

File tree

4 files changed

+98
-114
lines changed

4 files changed

+98
-114
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center"><a href="#readme"><img src="https://gh.kaos.st/sslscan.svg"/></a></p>
22

33
<p align="center">
4-
<a href="https://godoc.org/pkg.re/essentialkaos/sslscan.v11"><img src="https://godoc.org/github.com/essentialkaos/sslscan?status.svg"></a>
4+
<a href="https://godoc.org/pkg.re/essentialkaos/sslscan.v12"><img src="https://godoc.org/github.com/essentialkaos/sslscan?status.svg"></a>
55
<a href="https://goreportcard.com/report/github.com/essentialkaos/sslscan"><img src="https://goreportcard.com/badge/github.com/essentialkaos/sslscan"></a>
66
<a href="https://codebeat.co/projects/github-com-essentialkaos-sslscan"><img src="https://codebeat.co/badges/59a17b0e-b974-425e-a442-b9bcc3ccf7c0"></a>
77
<a href="https://travis-ci.com/essentialkaos/sslscan"><img src="https://travis-ci.com/essentialkaos/sslscan.svg"></a>
@@ -19,13 +19,13 @@ Package for Go for working with [SSLLabs](https://www.ssllabs.com) public API.
1919
To build the SSLScan from scratch, make sure you have a working Go 1.10+ workspace ([instructions](https://golang.org/doc/install)), then:
2020

2121
```
22-
go get pkg.re/essentialkaos/sslscan.v11
22+
go get pkg.re/essentialkaos/sslscan.v12
2323
```
2424

2525
If you want update SSLScan package to latest stable release, do:
2626

2727
```
28-
go get -u pkg.re/essentialkaos/sslscan.v11
28+
go get -u pkg.re/essentialkaos/sslscan.v12
2929
```
3030

3131
### Build Status

responses/v3-2.0.5-2009q.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

sslscan.go

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const (
149149
)
150150

151151
// VERSION is current package version
152-
const VERSION = "11.0.0"
152+
const VERSION = "12.0.0"
153153

154154
// ////////////////////////////////////////////////////////////////////////////////// //
155155

@@ -331,11 +331,8 @@ type ChainCert struct {
331331
}
332332

333333
type TrustPath struct {
334-
CertIDs []string `json:"certIds"` // list of certificate ID from leaf to root
335-
Trust []*TrustStore `json:"trust"` // trust object. This object shows info about the trusted certificate by using Mozilla trust store
336-
IsPinned bool `json:"isPinned"` // true if a key is pinned, else false
337-
MatchedPins int `json:"mactchedPins"` // number of matched pins with HPKP policy
338-
UnmatchedPins int `json:"unmatchedPins"` // number of unmatched pins with HPKP policy
334+
CertIDs []string `json:"certIds"` // list of certificate ID from leaf to root
335+
Trust []*TrustStore `json:"trust"` // trust object. This object shows info about the trusted certificate by using Mozilla trust store
339336
}
340337

341338
type TrustStore struct {

0 commit comments

Comments
 (0)