diff options
author | Zachary Michaels <mikezackles@gmail.com> | 2014-06-27 12:17:32 -0400 |
---|---|---|
committer | Zachary Michaels <mikezackles@gmail.com> | 2014-07-01 14:57:25 -0400 |
commit | 849c52c7ed8e7a210a916b4981bb2e893fb15d96 (patch) | |
tree | 45653266e27ce00877ec290b9692a849e6dd4ad9 /src/crypto | |
parent | Merge pull request #55 from monero-project/revert-54-master (diff) | |
download | monero-849c52c7ed8e7a210a916b4981bb2e893fb15d96.tar.xz |
Remove unused array in cn_slow_hash
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/slow-hash.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index b4a1c8085..ba95cf679 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -350,7 +350,6 @@ void cn_slow_hash(const void *data, size_t length, char *hash) RDATA_ALIGN16 uint64_t a[2]; RDATA_ALIGN16 uint64_t b[2]; RDATA_ALIGN16 uint64_t c[2]; - RDATA_ALIGN16 uint8_t aes_key[AES_KEY_SIZE]; union cn_slow_hash_state state; __m128i _a, _b, _c; uint64_t hi, lo; |