crocs-muni / usable-cert-validation

Research initiative to make TLS certificate validation usable.
https://x509errors.org
MIT License
19 stars 3 forks source link

Dismiss the necessity of Boost in Botan TLS client #115

Closed zacikpa closed 2 years ago

zacikpa commented 2 years ago

Boost is no longer needed, program options are processed using getopt. Solves #102.

zacikpa commented 2 years ago

One question, though. Is the struct tls_options your own creation? If this (or any other parts) are copied from boost code, this should be noted in the comments (and it possibly influences the licencing as well, depending on the Boost licence).

That is purely mine. All of our C clients use the same struct. It's not an ideal solution though, I may change it when I decide to do some refactoring.

mukrop commented 2 years ago

That is purely mine. All of our C clients use the same struct. It's not an ideal solution though, I may change it when I decide to do some refactoring.

OK, I'm happy then, merging.