by ox.to.a.cart:
tls.Config includes a NameToCertificate map that allows tls servers to specify
certificates to use for specific SNI names. I am building an HTTP proxy that
man-in-the-middle's connections, and it needs to be able to dynamically generate
certificates for any SNI name that comes in. Pregenerating the certificates is an
intractable problem since I would have to generate certificates for all known and even
possible server names in the world.
I've patched Go to allow the inclusion of an optional CertificateForName function on
tls.Config that, if present, provides a hook for the server to generate certificates on
the fly for a given SNI name.
The changeset in question is here:
https://code.google.com/r/oxtoacart-gomitm/source/detail?r=a696a331eda198996f567018c54d3551adf8d1de&;name=release-branch.go1.2
I use it in gomitm, which is here:
https://github.com/oxtoacart/gomitm/blob/master/mitm.go
by ox.to.a.cart: