• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/

Lines Matching refs:STDout

187     BIO *STDout = NULL;
234 STDout = BIO_new_fp(stdout, BIO_NOCLOSE);
238 STDout = BIO_push(tmpbio, STDout);
718 print_name(STDout, "issuer= ",
721 print_name(STDout, "subject= ",
724 BIO_printf(STDout, "serial=");
725 i2a_ASN1_INTEGER(STDout, X509_get_serialNumber(x));
726 BIO_printf(STDout, "\n");
751 BIO_printf(STDout, "%s\n",
758 BIO_printf(STDout, "%s\n", alstr);
760 BIO_puts(STDout, "<No Alias>\n");
762 BIO_printf(STDout, "%08lx\n", X509_subject_name_hash(x));
766 BIO_printf(STDout, "%08lx\n", X509_subject_name_hash_old(x));
770 BIO_printf(STDout, "%08lx\n", X509_issuer_name_hash(x));
774 BIO_printf(STDout, "%08lx\n", X509_issuer_name_hash_old(x));
780 BIO_printf(STDout, "Certificate purposes:\n");
783 purpose_print(STDout, x, ptmp);
794 BIO_printf(STDout, "Modulus=");
797 BN_print(STDout, pkey->pkey.rsa->n);
802 BN_print(STDout, pkey->pkey.dsa->pub_key);
805 BIO_printf(STDout, "Wrong Algorithm type");
806 BIO_printf(STDout, "\n");
817 PEM_write_bio_PUBKEY(STDout, pkey);
825 BIO_printf(STDout, "/* subject:%s */\n", buf);
828 BIO_printf(STDout, "/* issuer :%s */\n", buf);
840 BIO_printf(STDout, "unsigned char XXX_subject_name[%d]={\n",
844 BIO_printf(STDout, "0x%02X,", d[y]);
846 BIO_printf(STDout, "\n");
849 BIO_printf(STDout, "\n");
850 BIO_printf(STDout, "};\n");
853 BIO_printf(STDout, "unsigned char XXX_public_key[%d]={\n", z);
856 BIO_printf(STDout, "0x%02X,", d[y]);
858 BIO_printf(STDout, "\n");
861 BIO_printf(STDout, "\n");
862 BIO_printf(STDout, "};\n");
865 BIO_printf(STDout, "unsigned char XXX_certificate[%d]={\n",
869 BIO_printf(STDout, "0x%02X,", d[y]);
871 BIO_printf(STDout, "\n");
874 BIO_printf(STDout, "\n");
875 BIO_printf(STDout, "};\n");
879 X509_print_ex(STDout, x, nmflag, certflag);
881 BIO_puts(STDout, "notBefore=");
882 ASN1_TIME_print(STDout, X509_get_notBefore(x));
883 BIO_puts(STDout, "\n");
885 BIO_puts(STDout, "notAfter=");
886 ASN1_TIME_print(STDout, X509_get_notAfter(x));
887 BIO_puts(STDout, "\n");
901 BIO_printf(STDout, "%s Fingerprint=",
904 BIO_printf(STDout, "%02X%c", md[j], (j + 1 == (int)n)
986 print_cert_checks(STDout, x, checkhost, checkemail, checkip);
1029 BIO_free_all(STDout);