Searched refs:signer (Results 26 - 35 of 35) sorted by relevance

12

/freebsd-10.2-release/crypto/openssl/apps/
H A Docsp.c147 X509 *signer = NULL, *rsigner = NULL; local
286 } else if (!strcmp(*args, "-signer")) {
487 "-signer file certificate to sign OCSP request with\n");
532 "-verify_other file additional certificates to search for signer\n");
536 "-no_intern don't search certificates contained in response for signer\n");
656 signer = load_cert(bio_err, signfile, FORMAT_PEM,
657 NULL, e, "signer certificate");
658 if (!signer) {
659 BIO_printf(bio_err, "Error loading signer certificate\n");
664 NULL, e, "signer certificate
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/cms/
H A Dcms_asn1.c90 /* Minor tweak to operation: free up signer key, cert */
98 if (si->signer)
99 X509_free(si->signer);
H A Dcms_lcl.h139 X509 *signer; member in struct:CMS_SignerInfo_st
/freebsd-10.2-release/crypto/heimdal/lib/roken/
H A Dresolve.c292 /* the signer name is placed after the sig_data, to make it
317 rr->u.sig->signer = &rr->u.sig->sig_data[sig_len];
318 strlcpy(rr->u.sig->signer, host, hostlen + 1);
838 rr->u.sig->signer = &rr->u.sig->sig_data[sig_len];
839 strcpy_s(rr->u.sig->signer, hostlen + 1, pRec->Data.SIG.pNameSigner);
/freebsd-10.2-release/crypto/heimdal/lib/krb5/
H A Dpkinit.c895 struct krb5_pk_cert **signer)
907 *signer = NULL;
925 *signer = calloc(1, sizeof(**signer));
926 if (*signer == NULL) {
932 ret = hx509_get_one_cert(context->hx509ctx, signer_certs, &(*signer)->cert);
935 "Failed to get on of the signer certs");
942 if (*signer) {
943 hx509_cert_free((*signer)->cert);
944 free(*signer);
889 pk_verify_sign(krb5_context context, const void *data, size_t length, struct krb5_pk_identity *id, heim_oid *contentType, krb5_data *content, struct krb5_pk_cert **signer) argument
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/hx509/
H A Dcert.c2320 hx509_cert signer; local
2330 signer = path.val[i];
2332 ret = certificate_is_self_signed(context, signer->data, &selfsigned);
2341 signer = path.val[i + 1];
2346 signer,
2388 * @param signer the certificate that made the signature.
2400 const hx509_cert signer,
2405 return _hx509_verify_signature(context, signer, alg, data, sig);
2410 const hx509_cert signer,
2426 return _hx509_verify_signature(context, signer, al
2399 hx509_verify_signature(hx509_context context, const hx509_cert signer, const AlgorithmIdentifier *alg, const heim_octet_string *data, const heim_octet_string *sig) argument
2409 _hx509_verify_signature_bitstring(hx509_context context, const hx509_cert signer, const AlgorithmIdentifier *alg, const heim_octet_string *data, const heim_bit_string *sig) argument
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/ocsp/
H A Docsp.h424 X509 *signer,
472 X509 *signer, EVP_PKEY *key, const EVP_MD *dgst,
/freebsd-10.2-release/contrib/unbound/validator/
H A Dval_utils.c129 /** Get signer name from RRSIG */
162 /* return signer for first signature, or NULL */
168 /* get rrsig signer name out of the signature */
174 * Find best signer name in this set of rrsigs.
178 * @param signer_len: length of signer name.
195 * and have a signer name that is a superdomain of qname,
258 /* find closest superdomain signer name in authority section
282 verbose(VERB_QUERY, "find_signer: could not find signer name"
766 /** see if rrset has signer name as one of the rrsig signers */
789 size_t skip, uint8_t* name, size_t len, uint8_t* signer)
788 val_fill_reply(struct reply_info* chase, struct reply_info* orig, size_t skip, uint8_t* name, size_t len, uint8_t* signer) argument
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/ts/
H A Dts_rsp_sign.c203 int TS_RESP_CTX_set_signer_cert(TS_RESP_CTX *ctx, X509 *signer) argument
205 if (X509_check_purpose(signer, X509_PURPOSE_TIMESTAMP_SIGN, 0) != 1) {
212 ctx->signer_cert = signer;
657 /* Setting TSA name to subject of signer certificate. */
739 /* Add signer certificate and optional certificate chain. */
750 /* Add a new signer info. */
757 /* Add content type signed attribute to the signer info. */
766 * Create the ESS SigningCertificate attribute which contains the signer
773 /* Add SigningCertificate signed attribute to the signer info. */
795 /* Create the signature and add it to the signer inf
[all...]
H A Dts.h470 * Include the signer certificate and the other specified certificates in
472 * Only the signer certificates is included by default.
532 int TS_RESP_CTX_set_signer_cert(TS_RESP_CTX *ctx, X509 *signer);
617 /* Verify the signer's certificate and the signature of the response. */
636 /* Verify if the TSA name field matches the signer certificate. */

Completed in 130 milliseconds

12