-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evaluation of the IPFS paper #5
Conversation
evaluations/ipfs.md
Outdated
- Object pinning (§3.5.3) inevitably leads to centralized gateways to IPFS, such | ||
as Infura and Pinata | ||
- There are no self-describing multiformats for encryption and signing (§3.5.5) | ||
- IPFS uses variable size blocks instead of fixed-size chunks (§3.6) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is a hard imposition, CIDs can be anything and lengths can be anything as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No indeed, none of these are hard impositions. Just that fixed-size chunks might make a marketplace and incentives mechanism a bit simpler.
as Infura and Pinata | ||
- There are no self-describing multiformats for encryption and signing (§3.5.5) | ||
- IPFS uses variable size blocks instead of fixed-size chunks (§3.6) | ||
- Supporting version control directly in IPFS feels like an unnecessary |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what you mean by this, any content address store implicitly supports some level of version control, because event slightly different content will produce completely different identifiers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In paragraph 3.6 they describe a model that is very close to Git, including things like commits. I don't think that this is a necessary component of a decentralized storage protocol, but could better be built on top of it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, this is overkill.
For discussion, see: #5
@dryajov, I updated the evaluation based on your comments, what do you think? |
There is a description of the key that is used for signatures in SignedObject, and its questionable whether you should want the encryption scheme to be publicly available for EncryptedObject
No description provided.