rpki-client compare oid with OBJ_cmp

2021-09-09 Thread Claudio Jeker
Trying to remove work that is done over and over again. One of those checks are the various OID compares. Instead of converting the ASN1_OBJECT into a string and comparing the strings, convert the string into an ASN1_OBJECT once and then compare these objects with OBJ_cmp(). Any comments about thi

Re: rpki-client compare oid with OBJ_cmp

2021-09-09 Thread Theo Buehler
On Thu, Sep 09, 2021 at 02:51:24PM +0200, Claudio Jeker wrote: > Trying to remove work that is done over and over again. > One of those checks are the various OID compares. > Instead of converting the ASN1_OBJECT into a string and comparing the > strings, convert the string into an ASN1_OBJECT once