Home | History | Annotate | Download | only in utils

Lines Matching defs:logo

450 	n = os_realloc_array(hcert->logo, hcert->num_logo + 1,
454 hcert->logo = n;
455 n = &hcert->logo[hcert->num_logo];
527 wpa_printf(MSG_DEBUG, "OpenSSL: No SHA256 hash found for the logo");
710 static void debug_print_logotypeext(LogotypeExtn *logo)
720 if (logo->communityLogos) {
721 num = sk_LogotypeInfo_num(logo->communityLogos);
724 info = sk_LogotypeInfo_value(logo->communityLogos, i);
729 if (logo->issuerLogo) {
730 i2r_LogotypeInfo(logo->issuerLogo, "issuerLogo", out, indent );
733 if (logo->subjectLogo) {
734 i2r_LogotypeInfo(logo->subjectLogo, "subjectLogo", out, indent);
737 if (logo->otherLogos) {
752 LogotypeExtn *logo;
783 logo = d2i_LogotypeExtn(NULL, &data, ASN1_STRING_length(os));
784 if (logo == NULL) {
790 debug_print_logotypeext(logo);
792 if (!logo->communityLogos) {
794 LogotypeExtn_free(logo);
798 num = sk_LogotypeInfo_num(logo->communityLogos);
801 info = sk_LogotypeInfo_value(logo->communityLogos, i);
812 LogotypeExtn_free(logo);
842 os_free(hcert->logo[i].alg_oid);
843 os_free(hcert->logo[i].hash);
844 os_free(hcert->logo[i].uri);
846 os_free(hcert->logo);