Lines Matching refs:other_name

1701                                 mbedtls_x509_san_other_name *other_name )  in x509_get_other_name()  argument
1737 mbedtls_platform_zeroize( other_name, sizeof( *other_name ) ); in x509_get_other_name()
1753 other_name->value.hardware_module_name.oid.tag = MBEDTLS_ASN1_OID; in x509_get_other_name()
1754 other_name->value.hardware_module_name.oid.p = p; in x509_get_other_name()
1755 other_name->value.hardware_module_name.oid.len = len; in x509_get_other_name()
1759 mbedtls_platform_zeroize( other_name, sizeof( *other_name ) ); in x509_get_other_name()
1768 other_name->value.hardware_module_name.val.tag = MBEDTLS_ASN1_OCTET_STRING; in x509_get_other_name()
1769 other_name->value.hardware_module_name.val.p = p; in x509_get_other_name()
1770 other_name->value.hardware_module_name.val.len = len; in x509_get_other_name()
1774 mbedtls_platform_zeroize( other_name, in x509_get_other_name()
1775 sizeof( *other_name ) ); in x509_get_other_name()
1795 mbedtls_x509_san_other_name other_name; in mbedtls_x509_parse_subject_alt_name() local
1797 ret = x509_get_other_name( san_buf, &other_name ); in mbedtls_x509_parse_subject_alt_name()
1803 memcpy( &san->san.other_name, in mbedtls_x509_parse_subject_alt_name()
1804 &other_name, sizeof( other_name ) ); in mbedtls_x509_parse_subject_alt_name()
1872 mbedtls_x509_san_other_name *other_name = &san.san.other_name; in x509_info_subject_alt_name() local
1878 &other_name->value.hardware_module_name.oid ) != 0 ) in x509_info_subject_alt_name()
1885 … ret = mbedtls_oid_get_numeric_string( p, n, &other_name->value.hardware_module_name.oid ); in x509_info_subject_alt_name()
1891 if( other_name->value.hardware_module_name.val.len >= n ) in x509_info_subject_alt_name()
1897 memcpy( p, other_name->value.hardware_module_name.val.p, in x509_info_subject_alt_name()
1898 other_name->value.hardware_module_name.val.len ); in x509_info_subject_alt_name()
1899 p += other_name->value.hardware_module_name.val.len; in x509_info_subject_alt_name()
1901 n -= other_name->value.hardware_module_name.val.len; in x509_info_subject_alt_name()