Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions secure_enclave/EnclaveCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,6 @@ Fr *keyFromString(const char *_keyStringHex) {
return nullptr;
}

// Log the actual key value in decimal for debugging
char keyBuf[1024];
size_t len = val.getStr(keyBuf, sizeof(keyBuf), 10);
if (len > 0) {
LOG_DEBUG("keyFromString: final key value (dec) = ");
LOG_DEBUG(keyBuf);
}

ret = new Fr(val);
} catch (...) {
LOG_ERROR("Unknown throwable");
Expand Down Expand Up @@ -166,13 +158,6 @@ bool enclave_sign(const char *_keyString, const char *_hashXString,
return false;
}

LOG_DEBUG("enclave_sign: key_hex = ");
LOG_DEBUG(_keyString);
LOG_DEBUG("enclave_sign: hashX = ");
LOG_DEBUG(_hashXString);
LOG_DEBUG("enclave_sign: hashY = ");
LOG_DEBUG(_hashYString);

try {
key = keyFromString(_keyString);
if (!key) {
Expand Down
Loading