Home
last modified time | relevance | path

Searched refs:sigret (Results 1 – 18 of 18) sorted by relevance

/freebsd-12-stable/crypto/openssl/crypto/evp/
Dm_sigver.c100 int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, in EVP_DigestSignFinal() argument
106 if (!sigret) in EVP_DigestSignFinal()
107 return pctx->pmeth->signctx(pctx, sigret, siglen, ctx); in EVP_DigestSignFinal()
109 r = pctx->pmeth->signctx(pctx, sigret, siglen, ctx); in EVP_DigestSignFinal()
114 r = dctx->pmeth->signctx(dctx, sigret, siglen, ctx); in EVP_DigestSignFinal()
123 if (sigret) { in EVP_DigestSignFinal()
128 r = ctx->pctx->pmeth->signctx(ctx->pctx, sigret, siglen, ctx); in EVP_DigestSignFinal()
141 sigret, siglen, tmp_ctx); in EVP_DigestSignFinal()
148 if (EVP_PKEY_sign(ctx->pctx, sigret, siglen, md, mdlen) <= 0) in EVP_DigestSignFinal()
152 if (pctx->pmeth->signctx(pctx, sigret, siglen, ctx) <= 0) in EVP_DigestSignFinal()
[all …]
Dp_sign.c17 int EVP_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, in EVP_SignFinal() argument
54 if (EVP_PKEY_sign(pkctx, sigret, &sltmp, m, m_len) <= 0) in EVP_SignFinal()
/freebsd-12-stable/crypto/openssl/crypto/pem/
Dpem_sign.c27 int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, in PEM_SignFinal() argument
43 i = EVP_EncodeBlock(sigret, m, m_len); in PEM_SignFinal()
/freebsd-12-stable/crypto/openssl/doc/man3/
DRSA_sign_ASN1_OCTET_STRING.pod12 unsigned int m_len, unsigned char *sigret,
23 padding. It stores the signature in B<sigret> and the signature size
24 in B<siglen>. B<sigret> must point to B<RSA_size(rsa)> bytes of
DRSA_sign.pod12 unsigned char *sigret, unsigned int *siglen, RSA *rsa);
21 stores the signature in B<sigret> and the signature size in B<siglen>.
22 B<sigret> must point to RSA_size(B<rsa>) bytes of memory.
DDSA_sign.pod12 unsigned char *sigret, unsigned int *siglen, DSA *dsa);
23 encoding at B<sigret>. The length of the signature is places in
24 *B<siglen>. B<sigret> must point to DSA_size(B<dsa>) bytes of memory.
DRSA_meth_new.pod92 unsigned char *sigret,
96 unsigned int m_length, unsigned char *sigret,
DEVP_DigestVerifyInit.pod17 int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,
DEVP_DigestSignInit.pod17 int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,
DRSA_set_method.pod127 unsigned char *sigret, unsigned int *siglen, const RSA *rsa);
/freebsd-12-stable/crypto/openssl/crypto/rsa/
Drsa_sign.c70 unsigned char *sigret, unsigned int *siglen, RSA *rsa) in RSA_sign() argument
77 return rsa->meth->rsa_sign(type, m, m_len, sigret, siglen, rsa); in RSA_sign()
103 encrypt_len = RSA_private_encrypt(encoded_len, encoded, sigret, rsa, in RSA_sign()
Drsa_saos.c19 unsigned char *sigret, unsigned int *siglen, in RSA_sign_ASN1_OCTET_STRING() argument
44 i = RSA_private_encrypt(i, s, sigret, rsa, RSA_PKCS1_PADDING); in RSA_sign_ASN1_OCTET_STRING()
Drsa_meth.c226 unsigned char *sigret, unsigned int *siglen, in RSA_meth_get_sign()
235 unsigned char *sigret, unsigned int *siglen, in RSA_meth_set_sign() argument
Drsa_local.h99 unsigned char *sigret, unsigned int *siglen,
/freebsd-12-stable/crypto/openssl/include/openssl/
Drsa.h315 unsigned char *sigret, unsigned int *siglen, RSA *rsa);
325 unsigned char *sigret, unsigned int *siglen,
481 unsigned char *sigret, unsigned int *siglen,
486 unsigned char *sigret, unsigned int *siglen,
Devp.h623 __owur int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,
630 __owur int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,
637 __owur int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
Dpem.h280 int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
/freebsd-12-stable/crypto/openssl/engines/
De_capi.c126 unsigned int m_len, unsigned char *sigret,
819 unsigned char *sigret, unsigned int *siglen, const RSA *rsa) in capi_rsa_sign() argument
889 if (!CryptSignHash(hash, capi_key->keyspec, NULL, 0, sigret, &slen)) { in capi_rsa_sign()
898 c = sigret[i]; in capi_rsa_sign()
899 sigret[i] = sigret[slen - i - 1]; in capi_rsa_sign()
900 sigret[slen - i - 1] = c; in capi_rsa_sign()