summaryrefslogtreecommitdiffstats
path: root/libtomcrypt/hashes/hash_memory.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2010-09-06 17:20:33 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2010-09-06 17:26:58 +0200
commite6177630198eb1eea2def0374fae1196da0e40ec (patch)
tree704951804609999fb6ef7a956b04921b9f84c320 /libtomcrypt/hashes/hash_memory.c
parent943f9ab50c110133a5cd1118b5b19cb09301168f (diff)
downloadcryptodev-linux-e6177630198eb1eea2def0374fae1196da0e40ec.tar.gz
cryptodev-linux-e6177630198eb1eea2def0374fae1196da0e40ec.tar.xz
cryptodev-linux-e6177630198eb1eea2def0374fae1196da0e40ec.zip
Run Lindent on libtom(*)
Diffstat (limited to 'libtomcrypt/hashes/hash_memory.c')
-rw-r--r--libtomcrypt/hashes/hash_memory.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/libtomcrypt/hashes/hash_memory.c b/libtomcrypt/hashes/hash_memory.c
index c6f5188..ed1425f 100644
--- a/libtomcrypt/hashes/hash_memory.c
+++ b/libtomcrypt/hashes/hash_memory.c
@@ -26,41 +26,41 @@
@param outlen [in/out] Max size and resulting size of the digest
@return CRYPT_OK if successful
*/
-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(const struct algo_properties_st *hash, const unsigned char *in,
+ unsigned long inlen, unsigned char *out, unsigned long *outlen)
{
- int err;
- struct hash_data hdata;
+ int err;
+ struct hash_data hdata;
- LTC_ARGCHK(in != NULL);
- LTC_ARGCHK(out != NULL);
- LTC_ARGCHK(outlen != NULL);
+ LTC_ARGCHK(in != NULL);
+ LTC_ARGCHK(out != NULL);
+ LTC_ARGCHK(outlen != NULL);
- if ((err = hash_is_valid(hash)) != CRYPT_OK) {
- return err;
- }
+ if ((err = hash_is_valid(hash)) != CRYPT_OK) {
+ return err;
+ }
- if (*outlen < hash->digest_size) {
- *outlen = hash->digest_size;
- return CRYPT_BUFFER_OVERFLOW;
- }
+ if (*outlen < hash->digest_size) {
+ *outlen = hash->digest_size;
+ return CRYPT_BUFFER_OVERFLOW;
+ }
- err = cryptodev_hash_init(&hdata, hash->kstr, NULL, 0);
- if (err < 0) {
- err = CRYPT_INVALID_HASH;
- goto LBL_ERR;
- }
+ err = cryptodev_hash_init(&hdata, hash->kstr, NULL, 0);
+ if (err < 0) {
+ err = CRYPT_INVALID_HASH;
+ goto LBL_ERR;
+ }
- if ((err = _cryptodev_hash_update(&hdata, in, inlen)) < 0) {
- err = CRYPT_ERROR;
- goto LBL_ERR;
- }
-
- err = cryptodev_hash_final(&hdata, out);
-
- *outlen = hash->digest_size;
+ if ((err = _cryptodev_hash_update(&hdata, in, inlen)) < 0) {
+ err = CRYPT_ERROR;
+ goto LBL_ERR;
+ }
+
+ err = cryptodev_hash_final(&hdata, out);
+
+ *outlen = hash->digest_size;
LBL_ERR:
- cryptodev_hash_deinit(&hdata);
+ cryptodev_hash_deinit(&hdata);
- return err;
+ return err;
}
-