Home | History | Annotate | Download | only in futility

Lines Matching full:outfile

38 static char *infile, *outfile, *outext;
123 if (0 != PrivateKeyWrite(outfile, privkey)) {
127 fprintf(stderr, "wrote %s\n", outfile);
143 if (0 != PublicKeyWrite(outfile, pubkey)) {
147 fprintf(stderr, "wrote %s\n", outfile);
209 if (vb2_private_key_write(privkey, outfile)) {
213 fprintf(stderr, "wrote %s\n", outfile);
250 if (vb2_public_key_write(pubkey, outfile)) {
254 fprintf(stderr, "wrote %s\n", outfile);
368 outfile = (char *)malloc(len);
369 if (!outfile) {
373 strcpy(outfile, s);
377 s = strrchr(outfile, '/');
379 s = outfile;
386 outext = outfile + strlen(outfile);
394 free(outfile);