Home
last modified time | relevance | path

Searched refs:sigbuf (Results 1 – 16 of 16) sorted by relevance

/external/dropbear/
Dcli-authpubkey.c134 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/
Drsa_sign.c157 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()
Drsa_saos.c106 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()
Drsa_locl.h3 const unsigned char *sigbuf, size_t siglen,
Drsa.h120 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/
Dp_verify.c65 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()
Devp.h176 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/
Dasync-sigs.c42 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/
Decs_vrf.c84 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/
Ddgst.c122 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/
Ddsa_asn1.c176 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()
Ddsa.h218 const unsigned char *sigbuf, int siglen, DSA *dsa);
/external/openssl/include/openssl/
Drsa.h120 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);
Ddsa.h218 const unsigned char *sigbuf, int siglen, DSA *dsa);
Devp.h176 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/
Dssh-rsa.c211 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()