OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bytes_to_mp
(Results
1 - 8
of
8
) sorted by null
/external/dropbear/
bignum.h
32
void
bytes_to_mp
(mp_int *mp, const unsigned char* bytes, unsigned int len);
dss.c
196
bytes_to_mp
(&val1, &string[SHA1_HASH_SIZE], SHA1_HASH_SIZE);
209
bytes_to_mp
(&val1, msghash, SHA1_HASH_SIZE);
218
bytes_to_mp
(&val1, &string[0], SHA1_HASH_SIZE);
343
bytes_to_mp
(&dss_protok, proto_k, SHA512_HASH_SIZE);
354
bytes_to_mp
(&dss_m, msghash, SHA1_HASH_SIZE);
bignum.c
55
void
bytes_to_mp
(mp_int *mp, const unsigned char* bytes, unsigned int len) {
function
gendss.c
80
bytes_to_mp
(key->q, buf, QSIZE);
116
bytes_to_mp
(&tempX, buf, size);
genrsa.c
111
bytes_to_mp
(prime, buf, size+1);
random.c
233
bytes_to_mp
(rand, randbuf, len);
rsa.c
419
bytes_to_mp
(rsa_em, buf_getptr(rsa_EM, rsa_EM->size),
common-kex.c
485
bytes_to_mp
(&dh_p, (unsigned char*)dh_p_val, DH_P_LEN);
523
bytes_to_mp
(&dh_p, dh_p_val, DH_P_LEN);
Completed in 491 milliseconds