Skip to content

Commit 8f02ff2

Browse files
committed
Remove removed factory
1 parent 2f90b4a commit 8f02ff2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/advanced/tls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ the root certificates for these certificate authorities which will allow connect
2020
made.
2121

2222
KICL 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

2626
For certificate or key pinning, you currently must implement this yourself in your custom
2727
`TrustManager`, though discussions for adding a pinning API are underway.

docs/advanced/tls_import.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ means that connections to servers which make use of certificates signed by CAs s
55
fail.
66

77
It'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
99
verification.
1010

1111
1. Download the root certificates in DER form. For StartCom's roots, these can be obtained using wget:

0 commit comments

Comments
 (0)