Right now, x509::Crl represents a linked list of CRLs. This isn't in line with the normal way we represent MbedTLS linked lists since #128.
Instead, we should follow the same pattern we have for MbedtlsList<Certificate>.
After this, x509::Certificate::verify should take MbedtlsList<Crl> as well.
Right now,
x509::Crlrepresents a linked list of CRLs. This isn't in line with the normal way we represent MbedTLS linked lists since #128.Instead, we should follow the same pattern we have for
MbedtlsList<Certificate>.After this,
x509::Certificate::verifyshould takeMbedtlsList<Crl>as well.