diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-29 20:32:31 +0200 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-30 23:46:08 +0200 |
commit | cc429b68fadc502b981fd0acd64a5ff6e2ae1d15 (patch) | |
tree | 3fb23fc4db15dbdd08af4c7ea20134b9d82e58fd /xmrstak/backend/cpu/crypto/cryptonight.h | |
parent | e5b0319d5a9f58762fa934ad700113908940cb31 (diff) | |
download | xmr-stak-cc429b68fadc502b981fd0acd64a5ff6e2ae1d15.zip xmr-stak-cc429b68fadc502b981fd0acd64a5ff6e2ae1d15.tar.gz |
group files
- move source code to `src`
- categorize files and move to group folder
- change upper case class files to lower case
- change C++ header to `*.hpp`
Diffstat (limited to 'xmrstak/backend/cpu/crypto/cryptonight.h')
-rw-r--r-- | xmrstak/backend/cpu/crypto/cryptonight.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/xmrstak/backend/cpu/crypto/cryptonight.h b/xmrstak/backend/cpu/crypto/cryptonight.h new file mode 100644 index 0000000..978c798 --- /dev/null +++ b/xmrstak/backend/cpu/crypto/cryptonight.h @@ -0,0 +1,31 @@ +#ifndef __CRYPTONIGHT_H_INCLUDED +#define __CRYPTONIGHT_H_INCLUDED + +#ifdef __cplusplus +extern "C" { +#endif + +#include <stddef.h> +#include <inttypes.h> + +#define MEMORY 2097152 + +typedef struct { + uint8_t hash_state[224]; // Need only 200, explicit align + uint8_t* long_state; + uint8_t ctx_info[24]; //Use some of the extra memory for flags +} cryptonight_ctx; + +typedef struct { + const char* warning; +} alloc_msg; + +size_t cryptonight_init(size_t use_fast_mem, size_t use_mlock, alloc_msg* msg); +cryptonight_ctx* cryptonight_alloc_ctx(size_t use_fast_mem, size_t use_mlock, alloc_msg* msg); +void cryptonight_free_ctx(cryptonight_ctx* ctx); + +#ifdef __cplusplus +} +#endif + +#endif |