File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ the root certificates for these certificate authorities which will allow connect
2020made.
2121
2222KICL lets you set your own ` TrustManagerFactory ` in the ` Client.Builder ` so you may let KICL
23- connect to the network you desire. There is also the ` AcceptingTrustManagerFactory ` which,
24- if you set it in the ` Client.Builder ` , will blindly allow all connections through.
23+ connect to the network you desire. For testing, there is also the ` InsecureTrustManagerFactory `
24+ which, if you set it in the ` Client.Builder ` , will blindly allow all connections through.
2525
2626For certificate or key pinning, you currently must implement this yourself in your custom
2727` TrustManager ` , though discussions for adding a pinning API are underway.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ means that connections to servers which make use of certificates signed by CAs s
55fail.
66
77It's possible to manually import the root certificates into Java's trust store which will make such connections work.
8- This approach is preferable to making use of the ` AcceptingTrustManagerFactory ` or otherwise disabling certificate
8+ This approach is preferable to making use of the ` InsecureTrustManagerFactory ` or otherwise disabling certificate
99verification.
1010
11111 . Download the root certificates in DER form. For StartCom's roots, these can be obtained using wget:
You can’t perform that action at this time.
0 commit comments