• Home
  • Raw
  • Download

Lines Matching refs:bio_err

152 			BIO_printf(bio_err,"  %d = \"%s\"\n", j, pp[j]);  in print_entry()
184 BIO_printf(bio_err,"Memory allocation failure\n"); in update_index()
207 BIO_printf(bio_err,"variable lookup failed for %s::%s\n",name,tag); in lookup_fail()
314 if (bio_err == NULL) in MAIN()
315 if ((bio_err=BIO_new(BIO_s_file())) != NULL) in MAIN()
316 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT); in MAIN()
378 BIO_printf(bio_err,"unknown option %s\n",*argv); in MAIN()
391 BIO_printf(bio_err,"-dbfile and -configfile cannot be specified together.\n"); in MAIN()
396 …BIO_printf(bio_err,"Exactly one of the options -add, -delete, -modify -list must be specified.\n"); in MAIN()
401 BIO_printf(bio_err,"Need at least one user for options -add, -delete, -modify. \n"); in MAIN()
406 BIO_printf(bio_err,"-passin, -passout arguments only valid with one user.\n"); in MAIN()
413 BIO_printf(bio_err,"%s",*pp); in MAIN()
415 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR); in MAIN()
416 BIO_printf(bio_err," load the file (or the files in the directory) into\n"); in MAIN()
417 BIO_printf(bio_err," the random number generator\n"); in MAIN()
424 setup_engine(bio_err, engine, 0); in MAIN()
427 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) in MAIN()
429 BIO_printf(bio_err, "Error getting passwords\n"); in MAIN()
460 VERBOSE BIO_printf(bio_err,"Using configuration from %s\n",configfile); in MAIN()
465 BIO_printf(bio_err,"error loading the config file '%s'\n", in MAIN()
468 BIO_printf(bio_err,"error on line %ld of config file '%s'\n" in MAIN()
478 if (!load_config(bio_err, conf)) in MAIN()
484 VERBOSE BIO_printf(bio_err,"trying to read " ENV_DEFAULT_SRP " in \" BASE_SECTION \"\n"); in MAIN()
498 VERBOSE BIO_printf(bio_err,"trying to read " ENV_DATABASE " in section \"%s\"\n",section); in MAIN()
510 app_RAND_load_file(randfile, bio_err, 0); in MAIN()
512 VERBOSE BIO_printf(bio_err,"Trying to read SRP verifier file \"%s\"\n",dbfile); in MAIN()
528 print_index(db, bio_err, i, verbose > 1); in MAIN()
532 VERBOSE BIO_printf(bio_err, "Database initialised\n"); in MAIN()
537 print_entry(db, bio_err, gNindex, verbose > 1, "Default g and N"); in MAIN()
541 BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN); in MAIN()
546 VERBOSE BIO_printf(bio_err, "Database has no g N information.\n"); in MAIN()
551 VVERBOSE BIO_printf(bio_err,"Starting user processing\n"); in MAIN()
560 VVERBOSE BIO_printf(bio_err, "Processing user \"%s\"\n", user); in MAIN()
563 print_user(db, bio_err, userindex, (verbose > 0) || list_user); in MAIN()
570 BIO_printf(bio_err,"List all users\n"); in MAIN()
574 print_user(db,bio_err, i, 1); in MAIN()
580 BIO_printf(bio_err, "user \"%s\" does not exist, ignored. t\n", in MAIN()
591 BIO_printf(bio_err, "user \"%s\" reactivated.\n", user); in MAIN()
602 …_srpsalt]),gNrow?gNrow[DB_srpsalt]:gN,gNrow?gNrow[DB_srpverifier]:NULL, passout, bio_err,verbose))) in MAIN()
604 … BIO_printf(bio_err, "Cannot create srp verifier for user \"%s\", operation abandoned .\n", user); in MAIN()
614 !update_index(db, bio_err, row)) in MAIN()
631 BIO_printf(bio_err,"user \"%s\" does not exist, operation ignored.\n",user); in MAIN()
641 BIO_printf(bio_err,"user \"%s\" already updated, operation ignored.\n",user); in MAIN()
652 VERBOSE BIO_printf(bio_err,"Verifying password for user \"%s\"\n",user); in MAIN()
656 … ? irow[DB_srpsalt] : row[DB_srpgN], irow ? irow[DB_srpverifier] : NULL, passin, bio_err, verbose)) in MAIN()
658 BIO_printf(bio_err, "Invalid password for user \"%s\", operation abandoned.\n", user); in MAIN()
663 VERBOSE BIO_printf(bio_err,"Password for user \"%s\" ok.\n",user); in MAIN()
665 …psalt]),gNrow?gNrow[DB_srpsalt]:NULL, gNrow?gNrow[DB_srpverifier]:NULL, passout, bio_err,verbose))) in MAIN()
667 … BIO_printf(bio_err, "Cannot create srp verifier for user \"%s\", operation abandoned.\n", user); in MAIN()
687 BIO_printf(bio_err, "user \"%s\" does not exist, operation ignored. t\n", user); in MAIN()
693 BIO_printf(bio_err, "user \"%s\" revoked. t\n", user); in MAIN()
709 VERBOSE BIO_printf(bio_err,"User procession done.\n"); in MAIN()
722 print_user(db, bio_err, i, verbose); in MAIN()
726 VERBOSE BIO_printf(bio_err, "Trying to update srpvfile.\n"); in MAIN()
729 VERBOSE BIO_printf(bio_err, "Temporary srpvfile created.\n"); in MAIN()
732 VERBOSE BIO_printf(bio_err, "srpvfile updated.\n"); in MAIN()
738 VERBOSE BIO_printf(bio_err,"User errors %d.\n",errors); in MAIN()
740 VERBOSE BIO_printf(bio_err,"SRP terminating with code %d.\n",ret); in MAIN()
743 if (ret) ERR_print_errors(bio_err); in MAIN()
744 if (randfile) app_RAND_write_file(randfile, bio_err); in MAIN()