Re: rpki-client print crl data

2022-02-10 Thread Theo Buehler
On Thu, Feb 10, 2022 at 04:20:40PM +0100, Claudio Jeker wrote: > On Thu, Feb 10, 2022 at 04:09:40PM +0100, Theo Buehler wrote: > > On Thu, Feb 10, 2022 at 03:02:15PM +0100, Claudio Jeker wrote: > > > This adds the needed bits to print CRL files. > > > Using ASN1_INTEGER_get() is probably bad at lea

Re: rpki-client print crl data

2022-02-10 Thread Claudio Jeker
On Thu, Feb 10, 2022 at 04:09:40PM +0100, Theo Buehler wrote: > On Thu, Feb 10, 2022 at 03:02:15PM +0100, Claudio Jeker wrote: > > This adds the needed bits to print CRL files. > > Using ASN1_INTEGER_get() is probably bad at least I think there is the > > possibility the serial number wont fit in t

Re: rpki-client print crl data

2022-02-10 Thread Theo Buehler
On Thu, Feb 10, 2022 at 03:02:15PM +0100, Claudio Jeker wrote: > This adds the needed bits to print CRL files. > Using ASN1_INTEGER_get() is probably bad at least I think there is the > possibility the serial number wont fit in the long. I hope tb@ has a > better solution :) According to RFC 5280,

rpki-client print crl data

2022-02-10 Thread Claudio Jeker
This adds the needed bits to print CRL files. Using ASN1_INTEGER_get() is probably bad at least I think there is the possibility the serial number wont fit in the long. I hope tb@ has a better solution :) I created x509_get_time() to streamline the ASN1_TIME to time_t conversion and replaced a bun