Adam Shannon
Adam Shannon
On some installs `changeit` isn't the right value for `-storepass`. Should we offer an env variable in that event? Add some more common values? (i.e. `password`) I don't want to...
I've had to compare two certificates against each other and so far I've just opened two terminals with openssl/cert-manage commands. Then it's a manual comparison. We should be able to...
The contents of `-file` often get read and passed to `certutil.Decode`, but that function doesn't handle all possible file-based formats. For example java trust stores. Should we expand `Decode` to...
It seems handy to have a `connect ` subcommand which can take in a list of certificates (i.e. `-file`, `-app`) and use those for a connection to ``. When we...
[certifi](https://github.com/certifi) (http://certifi.io/ -- doesn't load) is an embedded cert store with a few language bindings. - [node](https://github.com/certifi/node-certifi) - [ruby](https://github.com/certifi/ruby-certifi) - [erlang](https://github.com/certifi/erlang-certifi) - [python](https://github.com/certifi/python-certifi) - [go](https://github.com/certifi/gocertifi) Found while investigating https://github.com/adamdecaf/cert-manage/issues/59
They seem to support windows, osx and linux. I'm not totally sure on their docker container support, but it might be useful for platform testing. I've also heard they've got...
Their code looks much more up to date and kept in line with `certdata.txt` updates. https://github.com/mozilla/OneCRL-Tools/blob/master/certdata/certdata.go
I'm starting to see `store.Store` grow beyond a desired size. First it was [adding GetInfo()](https://github.com/adamdecaf/cert-manage/issues/131), which wasn't too bad. Afterwords it's becoming [cmd/whitelist: fail if we don't have a backup](https://github.com/adamdecaf/cert-manage/issues/53)...
https://github.com/adamdecaf/cert-manage/issues/123 talks about how it's dreadfully slow to generate a whitelist from a modest collection of certificates. (30-40k on my local Firefox) This is one potential solution/improvement. I seem to...
From https://github.com/adamdecaf/cert-manage/issues/187 I don't see a single-table way to get history items and visit times for safari, but there seems to be a join possible between `history_items` and `history_visits`. ```...