Symbol: ASN1_INTEGER_cmp
crypto/libressl/crypto/asn1/x_crl.c
529
return(ASN1_INTEGER_cmp((*a)->serialNumber, (*b)->serialNumber));
crypto/libressl/crypto/asn1/x_crl.c
630
if (ASN1_INTEGER_cmp(rev->serialNumber, serial))
crypto/libressl/crypto/cms/cms_lib.c
663
return ASN1_INTEGER_cmp(ias->serialNumber, X509_get_serialNumber(cert));
crypto/libressl/crypto/ocsp/ocsp_lib.c
180
return ASN1_INTEGER_cmp(a->serialNumber, b->serialNumber);
crypto/libressl/crypto/pkcs7/pk7_doit.c
417
return ASN1_INTEGER_cmp(pcert->cert_info->serialNumber,
crypto/libressl/crypto/ts/ts_rsp_verify.c
456
if (ASN1_INTEGER_cmp(is->serial, X509_get_serialNumber(cert)))
crypto/libressl/crypto/ts/ts_rsp_verify.c
791
if (ASN1_INTEGER_cmp(a, b) != 0) {
crypto/libressl/crypto/x509/x509_asid.c
373
return ASN1_INTEGER_cmp(a->u.id, b->u.id);
crypto/libressl/crypto/x509/x509_asid.c
376
int r = ASN1_INTEGER_cmp(a->u.range->min, b->u.range->min);
crypto/libressl/crypto/x509/x509_asid.c
377
return r != 0 ? r : ASN1_INTEGER_cmp(a->u.range->max,
crypto/libressl/crypto/x509/x509_asid.c
382
return ASN1_INTEGER_cmp(a->u.id, b->u.range->min);
crypto/libressl/crypto/x509/x509_asid.c
384
return ASN1_INTEGER_cmp(a->u.range->min, b->u.id);
crypto/libressl/crypto/x509/x509_asid.c
535
if (ASN1_INTEGER_cmp(a_min, b_min) >= 0 ||
crypto/libressl/crypto/x509/x509_asid.c
536
ASN1_INTEGER_cmp(a_min, a_max) > 0 ||
crypto/libressl/crypto/x509/x509_asid.c
537
ASN1_INTEGER_cmp(b_min, b_max) > 0)
crypto/libressl/crypto/x509/x509_asid.c
560
if (ASN1_INTEGER_cmp(a_max_plus_one, b_min) >= 0)
crypto/libressl/crypto/x509/x509_asid.c
574
ASN1_INTEGER_cmp(a_min, a_max) > 0)
crypto/libressl/crypto/x509/x509_asid.c
651
if (ASN1_INTEGER_cmp(a_min, b_min) > 0)
crypto/libressl/crypto/x509/x509_asid.c
657
if (ASN1_INTEGER_cmp(a_min, a_max) > 0 ||
crypto/libressl/crypto/x509/x509_asid.c
658
ASN1_INTEGER_cmp(b_min, b_max) > 0)
crypto/libressl/crypto/x509/x509_asid.c
664
if (ASN1_INTEGER_cmp(a_max, b_min) >= 0) {
crypto/libressl/crypto/x509/x509_asid.c
689
if (ASN1_INTEGER_cmp(a_max_plus_one, b_min) == 0) {
crypto/libressl/crypto/x509/x509_asid.c
733
ASN1_INTEGER_cmp(a_min, a_max) > 0)
crypto/libressl/crypto/x509/x509_asid.c
855
if (ASN1_INTEGER_cmp(min, max) > 0) {
crypto/libressl/crypto/x509/x509_asid.c
949
if (ASN1_INTEGER_cmp(p_max, c_max) < 0)
crypto/libressl/crypto/x509/x509_asid.c
951
if (ASN1_INTEGER_cmp(p_min, c_min) > 0)
crypto/libressl/crypto/x509/x509_cmp.c
82
i = ASN1_INTEGER_cmp(ai->serialNumber, bi->serialNumber);
crypto/libressl/crypto/x509/x509_purp.c
925
ASN1_INTEGER_cmp(X509_get_serialNumber(issuer), akid->serial))
crypto/libressl/crypto/x509/x509_sxnet.c
379
if (!ASN1_INTEGER_cmp(id->zone, zone))
crypto/libressl/crypto/x509/x509_vfy.c
1260
if (ASN1_INTEGER_cmp(delta->base_crl_number, base->crl_number) > 0)
crypto/libressl/crypto/x509/x509_vfy.c
1263
if (ASN1_INTEGER_cmp(delta->crl_number, base->crl_number) > 0)
crypto/libressl/include/openssl/asn1.h
600
int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);