Inline mbedtls_x509_dn_get_next() in x509.h

Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
This commit is contained in:
Glenn Strauss 2022-06-27 14:12:44 -04:00
parent f5b7082f6e
commit 01d2f52a32
2 changed files with 10 additions and 10 deletions

View file

@ -269,12 +269,21 @@ int mbedtls_x509_dn_gets( char *buf, size_t size, const mbedtls_x509_name *dn );
/** /**
* \brief Return the next relative DN in an X509 name. * \brief Return the next relative DN in an X509 name.
* *
* \note Intended use is to compare function result to dn->next
* in order to detect boundaries of multi-valued RDNs.
*
* \param dn Current node in the X509 name * \param dn Current node in the X509 name
* *
* \return Pointer to the first attribute-value pair of the * \return Pointer to the first attribute-value pair of the
* next RDN in sequence, or NULL if end is reached. * next RDN in sequence, or NULL if end is reached.
*/ */
mbedtls_x509_name * mbedtls_x509_dn_get_next( mbedtls_x509_name *dn ); static inline mbedtls_x509_name * mbedtls_x509_dn_get_next(
mbedtls_x509_name * dn )
{
while( dn->MBEDTLS_PRIVATE(next_merged) && dn->next != NULL )
dn = dn->next;
return( dn->next );
}
/** /**
* \brief Store the certificate serial in printable form into buf; * \brief Store the certificate serial in printable form into buf;

View file

@ -796,15 +796,6 @@ int mbedtls_x509_dn_gets( char *buf, size_t size, const mbedtls_x509_name *dn )
return( (int) ( size - n ) ); return( (int) ( size - n ) );
} }
/*
* Return the next relative DN in an X509 name.
*/
mbedtls_x509_name * mbedtls_x509_dn_get_next( mbedtls_x509_name * dn )
{
for( ; dn->next != NULL && dn->next_merged; dn = dn->next );
return( dn->next );
}
/* /*
* Store the serial in printable form into buf; no more * Store the serial in printable form into buf; no more
* than size characters will be written * than size characters will be written