| /freebsd-12-stable/crypto/openssl/crypto/evp/ |
| D | m_sigver.c | 100 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 …]
|
| D | p_sign.c | 17 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/ |
| D | pem_sign.c | 27 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/ |
| D | RSA_sign_ASN1_OCTET_STRING.pod | 12 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
|
| D | RSA_sign.pod | 12 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.
|
| D | DSA_sign.pod | 12 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.
|
| D | RSA_meth_new.pod | 92 unsigned char *sigret, 96 unsigned int m_length, unsigned char *sigret,
|
| D | EVP_DigestVerifyInit.pod | 17 int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,
|
| D | EVP_DigestSignInit.pod | 17 int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,
|
| D | RSA_set_method.pod | 127 unsigned char *sigret, unsigned int *siglen, const RSA *rsa);
|
| /freebsd-12-stable/crypto/openssl/crypto/rsa/ |
| D | rsa_sign.c | 70 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()
|
| D | rsa_saos.c | 19 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()
|
| D | rsa_meth.c | 226 unsigned char *sigret, unsigned int *siglen, in RSA_meth_get_sign() 235 unsigned char *sigret, unsigned int *siglen, in RSA_meth_set_sign() argument
|
| D | rsa_local.h | 99 unsigned char *sigret, unsigned int *siglen,
|
| /freebsd-12-stable/crypto/openssl/include/openssl/ |
| D | rsa.h | 315 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,
|
| D | evp.h | 623 __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,
|
| D | pem.h | 280 int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
|
| /freebsd-12-stable/crypto/openssl/engines/ |
| D | e_capi.c | 126 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()
|