/third_party/openssl/apps/ |
D | dgst.c | 100 unsigned char *buf = NULL, *sigbuf = NULL; in dgst_main() local 370 sigbuf = app_malloc(siglen, "signature buffer"); in dgst_main() 371 siglen = BIO_read(sigbio, sigbuf, siglen); in dgst_main() 389 ret = do_fp(out, buf, inp, separator, out_bin, sigkey, sigbuf, in dgst_main() 412 r = do_fp(out, buf, inp, separator, out_bin, sigkey, sigbuf, in dgst_main() 428 OPENSSL_free(sigbuf); in dgst_main() 506 unsigned char *sigbuf = NULL; in do_fp() local 542 sigbuf = app_malloc(len, "Signature buffer"); in do_fp() 543 buf = sigbuf; in do_fp() 592 if (sigbuf != NULL) in do_fp() [all …]
|
/third_party/openssl/crypto/rsa/ |
D | rsa_sign.c | 126 const unsigned char *sigbuf, size_t siglen, RSA *rsa) in int_rsa_verify() argument 143 decrypt_len = RSA_public_decrypt((int)siglen, sigbuf, decrypt_buf, rsa, in int_rsa_verify() 240 const unsigned char *sigbuf, unsigned int siglen, RSA *rsa) in RSA_verify() argument 244 return rsa->meth->rsa_verify(type, m, m_len, sigbuf, siglen, rsa); in RSA_verify() 247 return int_rsa_verify(type, m, m_len, NULL, NULL, sigbuf, siglen, rsa); in RSA_verify()
|
D | rsa_saos.c | 56 unsigned int m_len, unsigned char *sigbuf, in RSA_verify_ASN1_OCTET_STRING() argument 75 i = RSA_public_decrypt((int)siglen, sigbuf, s, rsa, RSA_PKCS1_PADDING); in RSA_verify_ASN1_OCTET_STRING()
|
D | rsa_local.h | 102 unsigned int m_length, const unsigned char *sigbuf, 117 size_t *prm_len, const unsigned char *sigbuf,
|
D | rsa_meth.c | 244 unsigned int m_length, const unsigned char *sigbuf, in RSA_meth_get_verify() 253 const unsigned char *sigbuf, in RSA_meth_set_verify() argument
|
/third_party/openssl/crypto/ec/ |
D | ecdsa_vrf.c | 36 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) in ECDSA_verify() argument 39 return eckey->meth->verify(type, dgst, dgst_len, sigbuf, sig_len, in ECDSA_verify()
|
D | ecdsa_ossl.c | 293 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) in ossl_ecdsa_verify() argument 296 const unsigned char *p = sigbuf; in ossl_ecdsa_verify() 308 if (derlen != sig_len || memcmp(sigbuf, der, derlen) != 0) in ossl_ecdsa_verify()
|
D | ec_kmeth.c | 228 const unsigned char *sigbuf, in EC_KEY_METHOD_set_verify() argument 306 const unsigned char *sigbuf, in EC_KEY_METHOD_get_verify() argument
|
D | ec_local.h | 626 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey); 653 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey);
|
/third_party/openssl/crypto/evp/ |
D | p_verify.c | 17 int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf, in EVP_VerifyFinal() argument 51 i = EVP_PKEY_verify(pkctx, sigbuf, siglen, m, m_len); in EVP_VerifyFinal()
|
/third_party/openssl/crypto/dsa/ |
D | dsa_asn1.c | 133 const unsigned char *sigbuf, int siglen, DSA *dsa) in DSA_verify() argument 136 const unsigned char *p = sigbuf; in DSA_verify() 148 if (derlen != siglen || memcmp(sigbuf, der, derlen)) in DSA_verify()
|
/third_party/openssl/doc/man3/ |
D | RSA_sign_ASN1_OCTET_STRING.pod | 16 unsigned int m_len, unsigned char *sigbuf, 34 RSA_verify_ASN1_OCTET_STRING() verifies that the signature B<sigbuf>
|
D | RSA_sign.pod | 15 unsigned char *sigbuf, unsigned int siglen, RSA *rsa); 34 RSA_verify() verifies that the signature B<sigbuf> of size B<siglen>
|
D | DSA_sign.pod | 17 unsigned char *sigbuf, int siglen, DSA *dsa); 33 DSA_verify() verifies that the signature B<sigbuf> of size B<siglen>
|
D | EVP_VerifyInit.pod | 15 int EVP_VerifyFinal(EVP_MD_CTX *ctx, unsigned char *sigbuf, unsigned int siglen, 34 and against the B<siglen> bytes at B<sigbuf>.
|
D | RSA_meth_new.pod | 101 const unsigned char *sigbuf, 106 const unsigned char *sigbuf,
|
D | RSA_set_method.pod | 130 const unsigned char *sigbuf, unsigned int siglen,
|
/third_party/openssl/include/openssl/ |
D | rsa.h | 317 const unsigned char *sigbuf, unsigned int siglen, RSA *rsa); 328 unsigned int m_length, unsigned char *sigbuf, 490 unsigned int m_length, const unsigned char *sigbuf, 495 const unsigned char *sigbuf,
|
D | dsa.h | 106 const unsigned char *sigbuf, int siglen, DSA *dsa);
|
D | ec.h | 1321 const unsigned char *sigbuf, 1365 const unsigned char *sigbuf,
|
D | evp.h | 627 __owur int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf,
|