I'm thinking of recording a whole HTTPS session, publishing its encryption keys and presenting it to third parties as a proof that this particular data was sent by a given server identifying itself with some signed certificate.
How could such sniffing be done with Python + mechanize library? I guess that apart from sneaking on the raw socket, I'd have to find out what the encryption keys are or take the control over the whole encryption process. Which approach would be easier to implement?
(I've asked separately, on crypto.stackexchange.com, about whether such a proof should be convincing, i.e., whether it can be forged. The purpose of this question is to ask how to implement it.)