Skip to content

Instantly share code, notes, and snippets.

View zakird's full-sized avatar

Zakir Durumeric zakird

View GitHub Profile

WebPKI and Digital Signature related M&A + Investment + Public Offerings

  • This was inspired by Matt Suiche's great post on cyber security M&A related activity; there is some overlap but not much.
  • This is all public data.
  • I have also intentionally excluded sales of WebPKI key material, not only are these prices not public but they are usually very special cases that are in-essence impossible to compare effectively.
  • I have also included HSMs, Smart card, Digital signatures and CA related software companies in this list as it seems relevant.
Purchased Purchaser Date Price Structure Notes
@zakird
zakird / m2_basic_connectssl.py
Created November 7, 2011 21:45
M2Crypto Connect SSL Example
import M2Crypto
address = "mail.google.com"
context = M2Crypto.SSL.Context();
context.set_allow_unknown_ca(True)
context.set_verify(M2Crypto.SSL.verify_none, True)
conn = M2Crypto.SSL.Connection(context)
conn.connect((address, 443))