ipfs 0.2.1

IPFS node implementation
Documentation
syntax = "proto3";

package ipns_pb;

message IpnsEntry {
  enum ValidityType {
    EOL = 0; // setting an EOL says "this record is valid until..."
  }
  bytes value = 1; // required
  bytes signature = 2; // required
  ValidityType validityType = 3;
  bytes validity = 4;
  uint64 sequence = 5;
  uint64 ttl = 6;
  // in order for nodes to properly validate a record upon receipt, they
  // need the public key associated with it. For old RSA keys, its easiest
  // if we just send this as part of the record itself. For newer ed25519
  // keys, the public key can be embedded in the peerID, making this field
  // unnecessary.
  bytes pubKey = 7;
}