Skip to content

Commit

Permalink
Bulletproofs+
Browse files Browse the repository at this point in the history
  • Loading branch information
SarangNoether authored and moneromooo-monero committed Apr 4, 2022
1 parent 70ceab6 commit bd27deb
Show file tree
Hide file tree
Showing 11 changed files with 1,517 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,5 @@ nbproject
/testnet

__pycache__/
*.pyc
*.log
2 changes: 2 additions & 0 deletions src/cryptonote_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ namespace config

// Hash domain separators
const char HASH_KEY_BULLETPROOF_EXPONENT[] = "bulletproof";
const char HASH_KEY_BULLETPROOF_PLUS_EXPONENT[] = "bulletproof_plus";
const char HASH_KEY_BULLETPROOF_PLUS_TRANSCRIPT[] = "bulletproof_plus_transcript";
const char HASH_KEY_RINGDB[] = "ringdsb";
const char HASH_KEY_SUBADDRESS[] = "SubAddr";
const unsigned char HASH_KEY_ENCRYPTED_PAYMENT_ID = 0x8d;
Expand Down
6 changes: 4 additions & 2 deletions src/ringct/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ set(ringct_basic_sources
rctTypes.cpp
rctCryptoOps.c
multiexp.cc
bulletproofs.cc)
bulletproofs.cc
bulletproofs_plus.cc)

set(ringct_basic_private_headers
rctOps.h
rctTypes.h
multiexp.h
bulletproofs.h)
bulletproofs.h
bulletproofs_plus.h)

monero_private_headers(ringct_basic
${crypto_private_headers})
Expand Down
Loading

0 comments on commit bd27deb

Please sign in to comment.