Skip to content

Instantly share code, notes, and snippets.

View rajiv's full-sized avatar

Rajiv Aaron Manglani rajiv

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
@rajiv
rajiv / # testssl - 2017-09-27_16-48-16.txt
Created September 27, 2017 20:52
testssl on macOS 10.12.6 - Homebrew build logs
Homebrew build logs for testssl on macOS 10.12.6
Build date: 2017-09-27 16:48:16
@rajiv
rajiv / pg-9.2.sh
Last active December 27, 2015 10:29 — forked from darkofabijan/pg-9.2.sh
build commands to run postgres 9.2 on semaphoreapp.com.
sudo apt-get remove -y postgresql-client-9.3 postgresql-9.3 postgresql-contrib-9.3 postgresql-server-dev-9.3
wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add -
echo " deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" | sudo tee -a /etc/apt/sources.list
sudo apt-get update
sudo apt-get -y --force-yes install postgresql-9.2 postgresql-contrib-9.2
sudo su - postgres -c "pg_dropcluster --stop 9.2 main"
sudo su - postgres -c "pg_createcluster --start -e UTF-8 9.2 main"
sudo su - postgres -c "psql -c \"CREATE USER runner WITH PASSWORD 'semaphoredb';\" -d template1"
sudo su - postgres -c "psql -c \"ALTER USER runner CREATEUSER CREATEDB;\" -d template1"