Searched refs:attr_type (Results 1 – 6 of 6) sorted by relevance
/hostap-latest/tests/hwsim/ |
D | netlink.py | 25 def __init__(self, attr_type, data, *values): argument 26 self._type = attr_type 57 def __init__(self, attr_type, data): argument 58 Attr.__init__(self, attr_type, "%ds" % len(data), data) 61 def __init__(self, attr_type, data): argument 62 Attr.__init__(self, attr_type, "%dsB" % len(data), data, 0) 65 def __init__(self, attr_type, val): argument 66 Attr.__init__(self, attr_type, "I", val) 69 def __init__(self, attr_type, val): argument 70 Attr.__init__(self, attr_type, "B", val) [all …]
|
/hostap-latest/src/common/ |
D | dpp_crypto.c | 2157 int attr_type; in dpp_validate_csr() local 2172 &attr_len, &attr_type); in dpp_validate_csr() 2180 if (attr_type != ASN1_TAG_UTF8STRING && in dpp_validate_csr() 2181 attr_type != ASN1_TAG_PRINTABLESTRING && in dpp_validate_csr() 2182 attr_type != ASN1_TAG_IA5STRING) { in dpp_validate_csr() 2185 attr_type); in dpp_validate_csr()
|
/hostap-latest/src/crypto/ |
D | crypto.h | 1269 int attr_type, const u8 *value, size_t len);
|
D | crypto_wolfssl.c | 3383 int attr_type, const u8 *value, size_t len) in crypto_csr_set_attribute() argument 3385 if (!csr || attr_type != ASN1_TAG_UTF8STRING || !value || in crypto_csr_set_attribute()
|
D | crypto_openssl.c | 4343 int attr_type, const u8 *value, size_t len) in crypto_csr_set_attribute() argument 4355 if (!X509_REQ_add1_attr_by_NID((X509_REQ *) csr, nid, attr_type, value, in crypto_csr_set_attribute()
|
D | crypto_mbedtls_alt.c | 3089 struct crypto_csr *csr, enum crypto_csr_attr attr, int attr_type, const u8 *value, size_t len) in crypto_csr_set_attribute() argument
|