NICMx / FORT-validator

RPKI cache validator
MIT License
47 stars 22 forks source link

Treat X509_ALGOR as opaque structure #107

Closed botovq closed 5 months ago

botovq commented 5 months ago

Unfortunately, X509_ALGOR is still a public struct, and it only has the slightly awkward accessor X509_ALGOR_get0(), already used elsewhere in FORT. This converts two codepaths that reach into the struct to using X509_ALGOR_get0() so that X509_ALGOR can be made opaque in the future.

ydahhrk commented 5 months ago

Thank you!