Skip to content

Commit

Permalink
disabled DEBUG_WITH_TYPE
Browse files Browse the repository at this point in the history
  • Loading branch information
expy committed Oct 4, 2024
1 parent 58a9ba4 commit ba7d74d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/Pluto/CryptoUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,8 @@ CryptoUtils::CryptoUtils() : gen(0x1) { seeded = false; }
unsigned CryptoUtils::scramble32(const unsigned in, const char key[16]) {
assert(key != NULL && "CryptoUtils::scramble key=NULL");

DEBUG_WITH_TYPE("cryptoutils", dbgs() << "scramble32 in with " << in << "\n");
// fixme:
//DEBUG_WITH_TYPE("cryptoutils", dbgs() << "scramble32 in with " << in << "\n");

unsigned tmpA, tmpB;

Expand Down Expand Up @@ -344,7 +345,9 @@ unsigned CryptoUtils::scramble32(const unsigned in, const char key[16]) {

LOAD32H(tmpA, key);

DEBUG_WITH_TYPE("cryptoutils", dbgs() << "scramble32 out with " << static_cast<unsigned>(tmpA ^ tmpB) << "\n");


//DEBUG_WITH_TYPE("cryptoutils", dbgs() << "scramble32 out with " << static_cast<unsigned>(tmpA ^ tmpB) << "\n");
return tmpA ^ tmpB;
}

Expand Down

0 comments on commit ba7d74d

Please sign in to comment.