blob: f35ed3a02b17e5d2f52c765ff6765b8318206cf0 [file] [log] [blame]
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -07001Changes
2=======
3
4Since version 0.1
5-----------------
6
7- **Signature**
8
Alexander Afanasyev4b896112014-06-23 21:47:15 -07009 + New ``SignatureSha256WithEcdsa`` signature type for Elliptic Curve Digital Signature Algorithm (ECDSA).
Alexander Afanasyevf3e5e852014-06-13 22:44:02 -070010 + ``KeyLocatorDigest`` renamed to ``KeyDigest``. The specification now explicitly allows KeyDigest to be a SHA256 of any type of the key.
Alexander Afanasyev4b896112014-06-23 21:47:15 -070011 + ``KeyLocator`` field is now defined to be optionally present in generic ``SignatureInfo`` block.
12 ``SignatureSha256WithRsa`` and ``SignatureSha256WithEcdsa`` still require ``KeyLocator`` to be always present.
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -070013
14Since CCNx 0.7.2
15----------------
16
17- **General**
18
19 + XML-based ccnb packet encoding is replaced by TLV encoding
20
21- **Name**
22
23 + The name encoding is changed from binary XML to TLV format
24 + The discussions on naming conventions and the use of special markers inside NameComponents are removed from packet specification, and will be covered by a separate technical document
25 + Deprecated zero-length name component
26
27- **Interest Packet**
28
29 + ``Nonce`` is changed from optional to required
30 + ``PublisherPublicKeyDigest`` is replaced by ``PublisherPublicKeyLocator``
31 + ``AnswerOriginKind`` is simplified from 4bits to a 1-bit ``MustBeFresh``
32 + ``FaceID`` has been removed
33 + ``InterestLifetime`` changes the unit to the number of milliseconds
34 + Removed Bloom Filter from Exclude
35 + Changed default semantics of staleness
36
37 Specifically, NDN-TLV Interest without any selectors will bring any data that matches the name, and only when ``MustBeFresh`` selector is enabled it will try to honor freshness, specified in Data packets.
38 With Binary XML encoded Interests, the default behavior was to bring "fresh" data and return "stale" data only when ``AnswerOriginKind`` was set to 3.
39
40 Application developers must be aware of this change, reexamine the Interest expression code, and enable ``MustBeFresh`` selector when necessary.
41
42- **Data Packet**
43
44 + The structure of Data packet is changed:
45
46 * ``Name``, ``MetaInfo``, ``Content``, ``Signature{SignatureInfo, SignatureValue}``
47
48 + ``SignedInfo`` is renamed to ``MetaInfo`` and its content is changed
49 + ``PublisherPublicKeyDigest`` and ``ExtOpt`` are removed.
50 + ``Timestamp`` is removed
51 + ``KeyLocator`` is moved to be inside the ``Signature`` (``SignatureInfo``) block
52 + Three content types, ENCR, GONE, and NACK are removed
53 + ``FreshnessSeconds`` is renamed to ``FreshnessPeriod`` and is expressed in units of milliseconds
54
55- **Signature**
56
57 + ``Signature`` is moved to the end of Data packet.
58 + ``KeyLocator`` is moved to be a part of the ``SignatureInfo`` block, if it is applicable for the specific signature type.
59
60 The rationale for the move is to make Signature (sequence of ``SignatureInfo`` and ``SignatureValue`` TLVs) self-contained and self-sufficient.
61
62 + Signature type (or signing method information) is expressed as an assigned integer value (with no assumed default), rather than OID.
63 + Added support for hash-only "signature"
64 + The current specification does not define Merkle Hash Tree Aggregated Signatures, but it is expected that such (or similar) signatures will be defined in future version of this specification