diff options
| author | Riccardo Spagni <ric@spagni.net> | 2014-10-06 18:14:07 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2014-10-06 18:14:13 +0200 |
| commit | 97107bbb1bee6eed155b28e696e7fdc9d48d6406 (patch) | |
| tree | d3e297728674a6ffd21f90ae9257cfc61443caa9 | |
| parent | 2c739371acee014f7716503e588b3bccb4decd77 (diff) | |
| parent | e4fb913b2d3d508dc3ebf2d8e8ca1655e7ef63b9 (diff) | |
| download | monzero-core-97107bbb1bee6eed155b28e696e7fdc9d48d6406.tar.gz monzero-core-97107bbb1bee6eed155b28e696e7fdc9d48d6406.tar.xz monzero-core-97107bbb1bee6eed155b28e696e7fdc9d48d6406.zip | |
Merge pull request #173
e4fb913 Fix comment start for two functions (David G. Andersen)
| -rw-r--r-- | src/crypto/slow-hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index ec356d53b..ce8e90bb7 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -281,7 +281,7 @@ STATIC INLINE void aes_expand_key(const uint8_t *key, uint8_t *expandedKey) ek[10] = t1; } -/* +/** * @brief a "pseudo" round of AES (similar to but slightly different from normal AES encryption) * * To fill its 2MB scratch buffer, CryptoNight uses a nonstandard implementation @@ -323,7 +323,7 @@ STATIC INLINE void aes_pseudo_round(const uint8_t *in, uint8_t *out, } } -/* +/** * @brief aes_pseudo_round that loads data from *in and xors it with *xor first * * This function performs the same operations as aes_pseudo_round, but before |
