Is there a secure p2p distributed database?

Posted by p2pgirl on Stack Overflow See other posts from Stack Overflow or by p2pgirl
Published on 2012-11-14T03:59:03Z Indexed on 2012/11/18 23:02 UTC
Read the original article Hit count: 210

Filed under:
|
|
|

I'm looking for a distributed hash table to store and retrieve values securely. These are my requirements:

  • It must use an existing popular p2p network (I must guarantee my key/value will be stored and kept in multiple peers).
  • None but myself should be able to edit or delete the key/value. Ideally an encryption key that only I have access to would be required to edit my key value.
  • All peers would be able to read the key value (read-only access, only the key holder would be able to edit the value)

Is there such p2p distributed hash table? Would the bittorrent distributed hash table meet my requirements?'

Where could I find documentation?

© Stack Overflow or respective owner

Related posts about hashtable

Related posts about distributed