diff options
| author | Miloslav Trmač <mitr@redhat.com> | 2010-07-24 02:59:33 +0200 |
|---|---|---|
| committer | Miloslav Trmač <mitr@redhat.com> | 2010-07-24 04:25:24 +0200 |
| commit | 06520b6a96ac44d1c4c6e999c5d5ec725d11afa5 (patch) | |
| tree | 8b454b1c61e03d4e0927bd7e9446d8f2a58cf523 /libtomcrypt/headers | |
| parent | 51f5a84d2999239d305de3404e804273984d01e0 (diff) | |
| download | cryptodev-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.h | 2 |
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); |
