Searched refs:sigfile (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/crypto/openssl/apps/
H A Ddgst.c119 const char *sigfile = NULL, *randfile = NULL; local
190 sigfile = *(++argv);
244 if (do_verify && !sigfile) {
441 if (sigfile && sigkey) {
443 sigbio = BIO_new_file(sigfile, "rb");
447 BIO_printf(bio_err, "Error opening signature file %s\n", sigfile);
459 BIO_printf(bio_err, "Error reading signature file %s\n", sigfile);
H A Dpkeyutl.c91 char *infile = NULL, *outfile = NULL, *sigfile = NULL; local
129 } else if (!strcmp(*argv, "-sigfile")) {
133 sigfile = *(++argv);
224 if (sigfile && (pkey_op != EVP_PKEY_OP_VERIFY)) {
229 if (!sigfile && (pkey_op == EVP_PKEY_OP_VERIFY)) {
264 if (sigfile) {
265 BIO *sigbio = BIO_new_file(sigfile, "rb");
267 BIO_printf(bio_err, "Can't open signature file %s\n", sigfile);
354 "-sigfile file signature file (verify operation only)\n");
/freebsd-10-stable/usr.sbin/pkg/
H A Dpkg.c514 rsa_verify_cert(int fd, const char *sigfile, const unsigned char *key, argument
539 if (sigfile != NULL) {
540 if ((pkey = load_public_key_file(sigfile)) == NULL) {

Completed in 113 milliseconds