Searched refs:oid_buf (Results 1 – 2 of 2) sorted by relevance
/mbedtls-latest/include/mbedtls/ |
D | asn1.h | 121 #define MBEDTLS_OID_CMP(oid_str, oid_buf) \ argument 122 ((MBEDTLS_OID_SIZE(oid_str) != (oid_buf)->len) || \ 123 memcmp((oid_str), (oid_buf)->p, (oid_buf)->len) != 0) 125 #define MBEDTLS_OID_CMP_RAW(oid_str, oid_buf, oid_buf_len) \ argument 127 memcmp((oid_str), (oid_buf), (oid_buf_len)) != 0)
|
/mbedtls-latest/tests/suites/ |
D | test_suite_x509parse.function | 1533 void x509_oid_numstr(data_t *oid_buf, char *numstr, int blen, int ret) 1543 oid.p = oid_buf->x; 1544 oid.len = oid_buf->len;
|