Skip to content

Commit

Permalink
Fix code scanning alert no. 4: Clear-text logging of sensitive inform…
Browse files Browse the repository at this point in the history
…ation

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 23e29c2 commit 4bdbcf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/key_derivation.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def derive_key(
password, salt, length=key_length, iterations=iterations
)
senary_key = encode_to_senary(binary_key) if use_senary else binary_key.hex()
logger.debug("%s Derived key: %s", SEIGR_CELL_ID_PREFIX, senary_key)
logger.debug("%s Key derivation successful.", SEIGR_CELL_ID_PREFIX)
return senary_key


Expand Down

0 comments on commit 4bdbcf8

Please sign in to comment.