/external/dropbear/ |
D | cli-authpubkey.c | 134 buffer* sigbuf = NULL; in send_msg_userauth_pubkey() local 161 sigbuf = buf_new(4 + SHA1_HASH_SIZE + ses.writepayload->len); in send_msg_userauth_pubkey() 162 buf_putstring(sigbuf, ses.session_id, SHA1_HASH_SIZE); in send_msg_userauth_pubkey() 163 buf_putbytes(sigbuf, ses.writepayload->data, ses.writepayload->len); in send_msg_userauth_pubkey() 164 buf_put_sign(ses.writepayload, key, type, sigbuf->data, sigbuf->len); in send_msg_userauth_pubkey() 165 buf_free(sigbuf); /* Nothing confidential in the buffer */ in send_msg_userauth_pubkey()
|
/external/openssl/crypto/rsa/ |
D | rsa_sign.c | 157 const unsigned char *sigbuf, size_t siglen, in int_rsa_verify() argument 182 sigbuf,rm,rsa,RSA_PKCS1_PADDING); in int_rsa_verify() 199 i=RSA_public_decrypt((int)siglen,sigbuf,s,rsa,RSA_PKCS1_PADDING); in int_rsa_verify() 307 const unsigned char *sigbuf, unsigned int siglen, in RSA_verify() argument 314 sigbuf, siglen, rsa); in RSA_verify() 317 return int_rsa_verify(dtype, m, m_len, NULL, NULL, sigbuf, siglen, rsa); in RSA_verify()
|
D | rsa_saos.c | 106 unsigned int m_len, unsigned char *sigbuf, unsigned int siglen, in RSA_verify_ASN1_OCTET_STRING() argument 126 i=RSA_public_decrypt((int)siglen,sigbuf,s,rsa,RSA_PKCS1_PADDING); in RSA_verify_ASN1_OCTET_STRING()
|
D | rsa_locl.h | 3 const unsigned char *sigbuf, size_t siglen,
|
D | rsa.h | 120 const unsigned char *sigbuf, unsigned int siglen, 365 const unsigned char *sigbuf, unsigned int siglen, RSA *rsa); 374 unsigned char *sigbuf, unsigned int siglen, RSA *rsa);
|
/external/openssl/crypto/evp/ |
D | p_verify.c | 65 int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf, in EVP_VerifyFinal() argument 91 i = EVP_PKEY_verify(pkctx, sigbuf, siglen, m, m_len); in EVP_VerifyFinal() 119 sigbuf,siglen,pkey->pkey.ptr)); in EVP_VerifyFinal()
|
D | evp.h | 176 const unsigned char *sigbuf, unsigned int siglen, 189 unsigned int m_length,const unsigned char *sigbuf, 613 int EVP_VerifyFinal(EVP_MD_CTX *ctx,const unsigned char *sigbuf,
|
/external/valgrind/main/none/tests/ |
D | async-sigs.c | 42 char sigbuf[20]; in do_kill() local 44 sprintf(sigbuf, "-%d", sig); in do_kill() 46 execl("/bin/kill", "kill", sigbuf, pidbuf, NULL); in do_kill()
|
/external/openssl/crypto/ecdsa/ |
D | ecs_vrf.c | 84 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) in ECDSA_verify() argument 91 if (d2i_ECDSA_SIG(&s, &sigbuf, sig_len) == NULL) goto err; in ECDSA_verify()
|
/external/openssl/apps/ |
D | dgst.c | 122 unsigned char *sigbuf = NULL; in MAIN() local 473 sigbuf = OPENSSL_malloc(siglen); in MAIN() 480 siglen = BIO_read(sigbio, sigbuf, siglen); in MAIN() 501 err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf, in MAIN() 530 r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf, in MAIN() 552 if(sigbuf) OPENSSL_free(sigbuf); in MAIN()
|
/external/openssl/crypto/dsa/ |
D | dsa_asn1.c | 176 const unsigned char *sigbuf, int siglen, DSA *dsa) in DSA_verify() argument 183 if (d2i_DSA_SIG(&s,&sigbuf,siglen) == NULL) goto err; in DSA_verify()
|
D | dsa.h | 218 const unsigned char *sigbuf, int siglen, DSA *dsa);
|
/external/openssl/include/openssl/ |
D | rsa.h | 120 const unsigned char *sigbuf, unsigned int siglen, 365 const unsigned char *sigbuf, unsigned int siglen, RSA *rsa); 374 unsigned char *sigbuf, unsigned int siglen, RSA *rsa);
|
D | dsa.h | 218 const unsigned char *sigbuf, int siglen, DSA *dsa);
|
D | evp.h | 176 const unsigned char *sigbuf, unsigned int siglen, 189 unsigned int m_length,const unsigned char *sigbuf, 613 int EVP_VerifyFinal(EVP_MD_CTX *ctx,const unsigned char *sigbuf,
|
/external/openssh/ |
D | ssh-rsa.c | 211 u_char *sigbuf, u_int siglen, RSA *rsa) in openssh_RSA_verify() argument 243 if ((len = RSA_public_decrypt(siglen, sigbuf, decrypted, rsa, in openssh_RSA_verify()
|