Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I noticed that TrustKit behaves unpredictably in a particular corner case--
If there are two overlapping pinsets that include subdomains (say, "foo.com" and "bar.foo.com"), and a host matches both pinsets (say, "baz.bar.foo.com"), the selected pinset cannot be predicted. It's simply determined by which of those two keys shows up first while TrustKit is iterating over its dictionary of domains.
The best example of industry best practice I could find was from Google.
As far as I know, Android is the only platform that provides cert pinning functionality out-of-the-box.
And, TrustKit-Android relies on the base Android pinning implementation.
Google has chosen to handle this corner case by choosing the "most specific (longest) matching domain rule".
See the following links for references:
This is the behavior I had originally expected TrustKit to adhere to.
I modified the selection code to use this approach, and wrote a unit test to validate it.