Skip to content

Commit

Permalink
remove chunk log
Browse files Browse the repository at this point in the history
  • Loading branch information
sayem314 committed Sep 27, 2024
1 parent 346e83d commit a5e913b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion decrypt/decrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ func DecryptChunk(chunk []byte, blowfishKey string) []byte {
dst := make([]byte, len(chunk))
mode := cipher.NewCBCDecrypter(block, iv)
mode.CryptBlocks(dst, chunk)
logger.Debug("Decrypted chunk: %x", dst)
return dst
}

Expand Down

0 comments on commit a5e913b

Please sign in to comment.