1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Improve header docs and rename parameter

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann
2023-02-21 15:27:16 +00:00
parent 03329970de
commit 59400ffed5
2 changed files with 15 additions and 10 deletions

View File

@ -948,12 +948,12 @@ static int oid_subidentifier_encode_into(unsigned char **p,
/* Return the OID for the given x.y.z.... style numeric string */
int mbedtls_oid_from_numeric_string(mbedtls_asn1_buf *oid,
const char *buf, size_t size)
const char *oid_str, size_t size)
{
int ret = MBEDTLS_ERR_ASN1_INVALID_DATA;
const char *str_ptr = buf;
const char *str_bound = buf + size;
const char *str_ptr = oid_str;
const char *str_bound = oid_str + size;
int val = 0;
size_t encoded_len;
@ -1020,7 +1020,7 @@ int mbedtls_oid_from_numeric_string(mbedtls_asn1_buf *oid,
oid->len = encoded_len;
/* Now that we've allocated the buffer, go back to the start and encode */
str_ptr = buf;
str_ptr = oid_str;
unsigned char *out_ptr = oid->p;
unsigned char *out_bound = oid->p + oid->len;