mozilla / crlite

WebPKI-level Certificate Revocation via Multi-Level Bloom Filter Cascade
http://www.cs.umd.edu/~dml/papers/crlite_oakland17.pdf
Mozilla Public License 2.0
70 stars 8 forks source link

Simplify types and remove dead code #221

Closed jschanck closed 2 years ago

jschanck commented 2 years ago

There were a few types defined in storage/types.go that really belonged in types.go. I moved them, and then did a cursory search for unused types/methods. In some cases I removed public methods that were only used in tests, and I updated the tests accordingly.

Resolves #219