Lines Matching refs:attributes
233 if (pkey->attributes != NULL) { in sunw_evp_pkey_free()
234 sk_X509_ATTRIBUTE_pop_free(pkey->attributes, in sunw_evp_pkey_free()
236 pkey->attributes = NULL; in sunw_evp_pkey_free()
299 if (pkey->attributes == NULL) { in sunw_set_localkeyid()
300 pkey->attributes = sk_X509_ATTRIBUTE_new_null(); in sunw_set_localkeyid()
301 if (pkey->attributes == NULL) { in sunw_set_localkeyid()
307 i = find_attr_by_nid(pkey->attributes, NID_localKeyID); in sunw_set_localkeyid()
309 sk_X509_ATTRIBUTE_delete(pkey->attributes, i); in sunw_set_localkeyid()
311 if (sk_X509_ATTRIBUTE_push(pkey->attributes, attr) == 0) { in sunw_set_localkeyid()
363 if (pkey == NULL || pkey->attributes == NULL) { in sunw_get_pkey_localkeyid()
367 if ((i = find_attr_by_nid(pkey->attributes, NID_localKeyID)) < 0) { in sunw_get_pkey_localkeyid()
370 attr = sk_X509_ATTRIBUTE_value(pkey->attributes, i); in sunw_get_pkey_localkeyid()
378 attr = sk_X509_ATTRIBUTE_delete(pkey->attributes, i); in sunw_get_pkey_localkeyid()
425 if (pkey == NULL || pkey->attributes == NULL) { in sunw_get_pkey_fname()
429 if ((i = find_attr_by_nid(pkey->attributes, NID_friendlyName)) < 0) { in sunw_get_pkey_fname()
432 attr = sk_X509_ATTRIBUTE_value(pkey->attributes, i); in sunw_get_pkey_fname()
440 attr = sk_X509_ATTRIBUTE_delete(pkey->attributes, i); in sunw_get_pkey_fname()