Skip to content

Commit

Permalink
Merge pull request #1 from Snipa22/libuv
Browse files Browse the repository at this point in the history
Libuv
  • Loading branch information
Snipa22 authored Jul 1, 2017
2 parents bb091ff + 93934b9 commit 5ad4cfa
Show file tree
Hide file tree
Showing 61 changed files with 1,445 additions and 11,252 deletions.
53 changes: 53 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Created by .ignore support plugin (hsz.mobi)
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pids
*.pid
*.seed
*.pid.lock
lib-cov
coverage
.nyc_output
.grunt
bower_components
.lock-wscript
build/Release
node_modules/
jspm_packages/
typings/
.npm
.eslintcache
.node_repl_history
*.tgz
.yarn-integrity
.env
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/gradle.xml
.idea/**/libraries
.idea/**/mongoSettings.xml
*.iws
/out/
.idea_modules/
atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
build/*

node_modules/*
build/*
cmake-build-debug/*
.idea/*
1 change: 1 addition & 0 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"sources": [
"multihashing.cc",
"cryptonight.c",
"cryptonight_light.c",
"sha3/sph_keccak.c",
"crypto/oaes_lib.c",
"crypto/c_keccak.c",
Expand Down
4 changes: 2 additions & 2 deletions cryptonight.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static void do_blake_hash(const void* input, size_t len, char* output) {
blake256_hash((uint8_t*)output, input, len);
}

void do_groestl_hash(const void* input, size_t len, char* output) {
static void do_groestl_hash(const void* input, size_t len, char* output) {
groestl(input, len * 8, (uint8_t*)output);
}

Expand Down Expand Up @@ -225,7 +225,7 @@ static void CNKeccakF1600(uint64_t *st)
}
}

void CNKeccak(uint64_t *output, uint64_t *input)
static void CNKeccak(uint64_t *output, uint64_t *input)
{
uint64_t st[25];

Expand Down
Loading

0 comments on commit 5ad4cfa

Please sign in to comment.