summaryrefslogtreecommitdiffstats
path: root/libtomcrypt/headers
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2010-07-24 02:59:33 +0200
committerMiloslav Trmač <mitr@redhat.com>2010-07-24 04:25:24 +0200
commit06520b6a96ac44d1c4c6e999c5d5ec725d11afa5 (patch)
tree8b454b1c61e03d4e0927bd7e9446d8f2a58cf523 /libtomcrypt/headers
parent51f5a84d2999239d305de3404e804273984d01e0 (diff)
downloadcryptodev-linux-06520b6a96ac44d1c4c6e999c5d5ec725d11afa5.tar.gz
cryptodev-linux-06520b6a96ac44d1c4c6e999c5d5ec725d11afa5.tar.xz
cryptodev-linux-06520b6a96ac44d1c4c6e999c5d5ec725d11afa5.zip
Use algo_properties_st in hash_memory_multi
Diffstat (limited to 'libtomcrypt/headers')
-rw-r--r--libtomcrypt/headers/tomcrypt_hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtomcrypt/headers/tomcrypt_hash.h b/libtomcrypt/headers/tomcrypt_hash.h
index 93cc6c7..380bf7d 100644
--- a/libtomcrypt/headers/tomcrypt_hash.h
+++ b/libtomcrypt/headers/tomcrypt_hash.h
@@ -7,7 +7,7 @@ int hash_is_valid(int idx);
int hash_memory(const struct algo_properties_st *hash,
const unsigned char *in, unsigned long inlen,
unsigned char *out, unsigned long *outlen);
-int hash_memory_multi(int hash, unsigned char *out, unsigned long *outlen,
+int hash_memory_multi(const struct algo_properties_st *hash, unsigned char *out, unsigned long *outlen,
const unsigned char *in, unsigned long inlen, ...);
int hash_get_oid(const struct algo_properties_st *hash, oid_st* st);