/external/dropbear/libtomcrypt/src/hashes/helper/ |
hash_memory.c | 14 @file hash_memory.c 27 int hash_memory(int hash, const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen) function 67 /* $Source: /cvs/libtom/libtomcrypt/src/hashes/helper/hash_memory.c,v $ */
|
/external/dropbear/libtomcrypt/src/pk/pkcs1/ |
pkcs_1_oaep_encode.c | 87 if ((err = hash_memory(hash_idx, lparam, lparamlen, DB, &x)) != CRYPT_OK) { 91 /* can't pass hash_memory a NULL so use DB with zero length */ 92 if ((err = hash_memory(hash_idx, DB, 0, DB, &x)) != CRYPT_OK) {
|
pkcs_1_oaep_decode.c | 128 if ((err = hash_memory(hash_idx, lparam, lparamlen, seed, &x)) != CRYPT_OK) { 132 /* can't pass hash_memory a NULL so use DB with zero length */ 133 if ((err = hash_memory(hash_idx, DB, 0, seed, &x)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/misc/pkcs5/ |
pkcs_5_1.c | 79 if ((err = hash_memory(hash_idx, buf, hash_descriptor[hash_idx].hashsize, buf, &x)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/mac/hmac/ |
hmac_init.c | 68 if ((err = hash_memory(hash, key, keylen, hmac->key, &z)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/pk/dsa/ |
dsa_decrypt_key.c | 96 if ((err = hash_memory(hash, expt, x, expt, &y)) != CRYPT_OK) {
|
dsa_encrypt_key.c | 102 if ((err = hash_memory(hash, expt, x, skey, &y)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/pk/ecc/ |
ecc_decrypt_key.c | 107 if ((err = hash_memory(hash, ecc_shared, x, ecc_shared, &y)) != CRYPT_OK) {
|
ecc_encrypt_key.c | 102 if ((err = hash_memory(hash, ecc_shared, x, skey, &y)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/demos/ |
encrypt.c | 161 if ((errno = hash_memory(hash_idx,tmpkey,strlen((char *)tmpkey),key,&outlen)) != CRYPT_OK) {
|
multi.c | 16 hash_memory(find_hash("sha256"), (unsigned char*)"hello", 5, buf[0], &len);
|
tv_gen.c | 140 if ((err = hash_memory(x, buf, y, md, &outlen)) != CRYPT_OK) { 141 printf("hash_memory error: %s\n", error_to_string(err));
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_hash.h | 332 int hash_memory(int hash,
|
/external/dropbear/libtomcrypt/ |
Android.mk | 26 src/hashes/helper/hash_memory.c src/hashes/helper/hash_memory_multi.c src/hashes/md2.c src/hashes/md4.c \
|
crypt.tex | [all...] |