/openssl/crypto/evp/ |
H A D | p_verify.c | 17 int EVP_VerifyFinal_ex(EVP_MD_CTX *ctx, const unsigned char *sigbuf, in EVP_VerifyFinal_ex() argument 55 i = EVP_PKEY_verify(pkctx, sigbuf, siglen, m, m_len); in EVP_VerifyFinal_ex() 61 int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf, in EVP_VerifyFinal() argument 64 return EVP_VerifyFinal_ex(ctx, sigbuf, siglen, pkey, NULL, NULL); in EVP_VerifyFinal()
|
/openssl/crypto/ec/ |
H A D | ecdsa_vrf.c | 42 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) in ECDSA_verify() argument 45 return eckey->meth->verify(type, dgst, dgst_len, sigbuf, sig_len, in ECDSA_verify()
|
H A D | ec_kmeth.c | 250 const unsigned char *sigbuf, in EC_KEY_METHOD_set_verify() argument 328 const unsigned char *sigbuf, in EC_KEY_METHOD_get_verify() argument
|
H A D | ecdsa_ossl.c | 420 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) in ossl_ecdsa_verify() argument 423 const unsigned char *p = sigbuf; in ossl_ecdsa_verify() 435 if (derlen != sig_len || memcmp(sigbuf, der, derlen) != 0) in ossl_ecdsa_verify()
|
H A D | ec_local.h | 688 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey); 718 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey);
|
/openssl/crypto/rsa/ |
H A D | rsa_sign.c | 347 const unsigned char *sigbuf, size_t siglen, RSA *rsa) in ossl_rsa_verify() argument 363 len = RSA_public_decrypt((int)siglen, sigbuf, decrypt_buf, rsa, in ossl_rsa_verify() 462 const unsigned char *sigbuf, unsigned int siglen, RSA *rsa) in RSA_verify() argument 466 return rsa->meth->rsa_verify(type, m, m_len, sigbuf, siglen, rsa); in RSA_verify() 468 return ossl_rsa_verify(type, m, m_len, NULL, NULL, sigbuf, siglen, rsa); in RSA_verify()
|
H A D | rsa_saos.c | 59 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()
|
H A D | rsa_meth.c | 246 unsigned int m_length, const unsigned char *sigbuf, in RSA_meth_get_verify() 255 const unsigned char *sigbuf, in RSA_meth_set_verify() argument
|
H A D | rsa_local.h | 137 unsigned int m_length, const unsigned char *sigbuf,
|
/openssl/crypto/dsa/ |
H A D | dsa_sign.c | 195 const unsigned char *sigbuf, int siglen, DSA *dsa) in DSA_verify() argument 198 const unsigned char *p = sigbuf; in DSA_verify() 210 if (derlen != siglen || memcmp(sigbuf, der, derlen)) in DSA_verify()
|
/openssl/apps/ |
H A D | dgst.c | 111 unsigned char *buf = NULL, *sigbuf = NULL; in dgst_main() local 402 sigbuf = app_malloc(siglen, "signature buffer"); in dgst_main() 403 siglen = BIO_read(sigbio, sigbuf, siglen); in dgst_main() 439 ret = do_fp(out, buf, inp, separator, out_bin, xoflen, sigkey, sigbuf, in dgst_main() 456 sigkey, sigbuf, siglen, sig_name, md_name, argv[i])) in dgst_main() 473 OPENSSL_free(sigbuf); in dgst_main()
|
/openssl/doc/man3/ |
H A D | EVP_VerifyInit.pod | 15 int EVP_VerifyFinal_ex(EVP_MD_CTX *ctx, const unsigned char *sigbuf, 18 int EVP_VerifyFinal(EVP_MD_CTX *ctx, unsigned char *sigbuf, unsigned int siglen, 37 I<pkey> and I<siglen> bytes in I<sigbuf>.
|
H A D | RSA_sign_ASN1_OCTET_STRING.pod | 20 unsigned int m_len, unsigned char *sigbuf, 41 RSA_verify_ASN1_OCTET_STRING() verifies that the signature B<sigbuf>
|
H A D | RSA_sign.pod | 19 unsigned char *sigbuf, unsigned int siglen, RSA *rsa); 42 RSA_verify() verifies that the signature B<sigbuf> of size B<siglen>
|
H A D | DSA_sign.pod | 21 unsigned char *sigbuf, int siglen, DSA *dsa); 41 DSA_verify() verifies that the signature B<sigbuf> of size B<siglen>
|
H A D | RSA_meth_new.pod | 105 const unsigned char *sigbuf, 110 const unsigned char *sigbuf,
|
H A D | RSA_set_method.pod | 137 const unsigned char *sigbuf, unsigned int siglen,
|
/openssl/include/openssl/ |
H A D | rsa.h | 364 const unsigned char *sigbuf, 379 unsigned char *sigbuf, unsigned int siglen, 583 const unsigned char *sigbuf, 590 const unsigned char *sigbuf,
|
H A D | dsa.h | 145 int dgst_len, const unsigned char *sigbuf,
|
H A D | ec.h | 1518 const unsigned char *sigbuf, 1562 const unsigned char *sigbuf,
|
H A D | evp.h | 823 __owur int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf, 825 __owur int EVP_VerifyFinal_ex(EVP_MD_CTX *ctx, const unsigned char *sigbuf,
|
/openssl/test/ |
H A D | rsa_test.c | 399 unsigned char sigbuf[384]; in test_EVP_rsa_legacy_key() local 502 && TEST_true(EVP_DigestSign(ctx, sigbuf, &buflen, msgbuf, msglen))); in test_EVP_rsa_legacy_key()
|
H A D | evp_extra_test.c | 5596 const char sigbuf[] = "To Be Signed"; in test_sign_continuation() local 5620 || !TEST_true(EVP_DigestSignUpdate(mctx, sigbuf, sizeof(sigbuf))) in test_sign_continuation() 5622 || !TEST_true(EVP_DigestSignUpdate(mctx, sigbuf, sizeof(sigbuf))) in test_sign_continuation() 5632 || !TEST_true(EVP_DigestSignUpdate(mctx, sigbuf, sizeof(sigbuf))) in test_sign_continuation() 5634 || !TEST_false(EVP_DigestSignUpdate(mctx, sigbuf, sizeof(sigbuf))) in test_sign_continuation()
|
/openssl/include/crypto/ |
H A D | rsa.h | 114 size_t *prm_len, const unsigned char *sigbuf,
|