diff options
| author | tjp <tjp@ctrl-c.club> | 2024-01-10 11:04:52 -0700 |
|---|---|---|
| committer | tjp <tjp@ctrl-c.club> | 2024-01-10 11:04:52 -0700 |
| commit | 99a0553452971f4c3bae72651f16a7c2cc36b25b (patch) | |
| tree | c2e4b0a5f7eaa1e28948cdbcb2f0cb995984afb0 /tls.go | |
| parent | aa46d49b8952a69e37cdf10b61a0ef83c49cc1de (diff) | |
fixes to identities
* include a hash in "identity list"
* fixed using identities on a folder
Diffstat (limited to 'tls.go')
| -rw-r--r-- | tls.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -98,6 +98,7 @@ func createIdentity(state *BrowserState, name string) (*tls.Config, error) { Subject: pkix.Name{CommonName: commonName}, NotAfter: expiration, KeyUsage: x509.KeyUsageDigitalSignature, + ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth}, BasicConstraintsValid: true, } |
