Earlier quoted context omitted.
Something doesn't add up in this story. Encryption and hashing are different processes with different algorithms - SHA vs MD5. For example, IPSec VPNs hash a packet with MD5 to prevent tampering, then encrypt the hash with SHA256 to prevent viewing. (Because the message could be modified while encrypted, were it not also hashed.) Isn't the point of encryption that it doesn't create a reliable hash - that 2 identical…
There are several misconceptions in this comment, first and foremost that SHA is encryption, which it is not. It is a hashing algorithm, not unlike MD5, though "stronger". Secondly, when you have two files that are exactly the same and encrypt both with the same key, method and parameters then both will have the same hash. ( Though I could imagine Apple doing stuff with padding, and other parameters to make this not…
Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
41–50 of 284 posts
Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#42Given the legal grey area this all appears to be in and the potential upside of getting in to the HDDs this seems like something the authorities would be ok doing while the law catches up.
Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#43One potential option: 1. Install a hardware keylogger (software keylogger wouldn't work) in the laptop. 2. Release the defendant. 3. Get a warrant for the arrest of the defendant for CP-related crime. 4. Decrypt the laptop with the password recovered from the keylogger. All of this depends on the suspect using the laptop again, but I'm guessing they'd want to recover the contents on the laptop.
> Release the defendant: If this is judges decision, he can't be in court again for the same crime.
> Get a warrant for the arrest: Again? Isn't he released? As such, gov must not return laptop with backdoor either in hardware or software mode.
> Decrypt the laptop: Even if all above matched, you think he'd use the same laptop again? If he has a bit of brain, I think he wouldn't.
Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#44Earlier quoted context omitted.
There are several misconceptions in this comment, first and foremost that SHA is encryption, which it is not. It is a hashing algorithm, not unlike MD5, though "stronger". Secondly, when you have two files that are exactly the same and encrypt both with the same key, method and parameters then both will have the same hash. ( Though I could imagine Apple doing stuff with padding, and other parameters to make this not…
Right... so for the authorities to "compare" the hash of an encrypted file with that of a known original, they would need to encrypt the original with the same private key used to encrypt the encrypted file. If they had that private key, wouldn't it be sufficient to unlock the drive? They wouldn't need his cooperation to decrypt the drive if they had a private key. So it seems like a catch-22 compelling him to decryp…
Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#45Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#46There's a better article in Ars: https://arstechnica.com/tech-policy/2017/03/man-jailed-indef... From that article: > The court also noted that the authorities "found [on the Mac Book Pro] one image depicting a pubescent girl in a sexually suggestive position and logs that suggested the user had visited groups with titles common in child exploitation." They also said the man's sister had "reported" that her brother s…
> "The fact remains that the government has not brought charges," Donoghue said in a telephone interview. "Our client has now been in custody for almost 18 months based on his assertion of his Fifth Amendment right against compelled self-incrimination." To be clear (and I am pretty sure the public defender knows this, but is just phrasing it like this for public perception), the prosecution's position is that the Fif…
Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#47There's a better article in Ars: https://arstechnica.com/tech-policy/2017/03/man-jailed-indef... From that article: > The court also noted that the authorities "found [on the Mac Book Pro] one image depicting a pubescent girl in a sexually suggestive position and logs that suggested the user had visited groups with titles common in child exploitation." They also said the man's sister had "reported" that her brother s…
There is simply no way to prove he is knowingly withholding a password vs simply forgetting it.
Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#48"Investigators said content stored on the encrypted hard drive matched file hashes for known child pornography content." If the disk is encrypted how can they match file hashes? Do they encrypt known CP files with the FileVault key and then compare? If so, isn't that enough to convict him?
This is an attack, which contemporary block based FDE doesn't really protect you well from. Bitlocker, FileFault, TrueCrypt, VeraCrypt basically operate on one disk block at at time and this means they cannot hide data patterns well. Or as Thomas Ptacek put it in his article "You Don't Want XTS" [1]
>It’s ECB-like. It can’t do a perfect job of providing privacy.
This is also why Thomas Ptacek and others are advocating that FDE is not a complete replacement for file based encryption.
> But that’s the big problem: sector-level encryption sucks. It’s messy, provides fewer security guarantees than conventional message encryption, and makes tradeoffs tailored to the challenges of encrypting disk sectors.
> Sector-level crypto is last-resort crypto.[1]
The Wikipedia article about ECB[2] (which is not used in current FDE) has a dramatic example where the image of the Linux penguin is clearly recognizable in the ciphertext.
[1] https://sockpuppet.org/blog/2014/04/30/you-dont-want-xts/
[2] https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation
Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#49Re: Man Who Refused to Decrypt Hard Drives Still in Prison After Two Years
#50"Investigators said content stored on the encrypted hard drive matched file hashes for known child pornography content." If the disk is encrypted how can they match file hashes? Do they encrypt known CP files with the FileVault key and then compare? If so, isn't that enough to convict him?
Something doesn't add up in this story. Encryption and hashing are different processes with different algorithms - SHA vs MD5. For example, IPSec VPNs hash a packet with MD5 to prevent tampering, then encrypt the hash with SHA256 to prevent viewing. (Because the message could be modified while encrypted, were it not also hashed.) Isn't the point of encryption that it doesn't create a reliable hash - that 2 identical…