OweFS – One-way encrypted file system
owefs.firelet.net
OweFS – One-way encrypted file system
1–10 of 39 posts
Re: OweFS – One-way encrypted file system
#2Re: OweFS – One-way encrypted file system
#3Re: OweFS – One-way encrypted file system
#4http://www.techrepublic.com/blog/linux-and-open-source/creat...
Re: OweFS – One-way encrypted file system
#5Is this essentially the same thing as encrypted loopback filesystems? http://www.techrepublic.com/blog/linux-and-open-source/creat...
Re: OweFS – One-way encrypted file system
#6The two applications that caught my eye were "home security cameras" (which the docs allude to) and secure telemetry.
You have a device (say, a drone) that logs telemetry data, but if the drone is lost, the data cannot be recovered by a third party without the private key.
Re: OweFS – One-way encrypted file system
#7Exposing filenames in the clear like that is a significant drawback. I'm not sure how you could get around it, though.
(So you have public key 0xDEAFBEEF; you want to write a file named 'secret.txt' with the contents 'We attack at dawn'. OweFS encrypts 'We attack at dawn' to 010101 and writes that to 'secret.txt'. But why couldn't it have encrypted the contents to 010101 and encrypted the filename 'secret.txt' to 111000, and then written a file named 111000.encrypted with the contents 010101? Then when the owner of 0xDEAFBEEF wanted to read it, he simply decrypts 111000.encrypted to 'secret.txt' and decrypts its content 010101 to 'We attack at dawn.')
Re: OweFS – One-way encrypted file system
#8Re: OweFS – One-way encrypted file system
#9[1] https://github.com/FedericoCeratto/owefs/blob/master/pycrypt...
Re: OweFS – One-way encrypted file system
#10why not use the asymmetric keypair to guard an AES key, and use AES to do the encryption instead, something like what https is doing.