blob: 5a84ccbb176aafda0790b23330be4eff7d716316 [file] [log] [blame]
Alexander Afanasyevaa8b3782017-01-19 20:04:31 -08001ndn-cxx version 0.5.1
2---------------------
3
4Release date: January 25, 2017
5
6.. note::
7 This is the last release of the library that supports :ref:`NDN Certificate format version 1
8 <Security Library Tutorial>` and the existing implementations of validators. The upcoming
9 0.6.0 release will include multiple breaking changes of the security framework.
10
11Changes since version 0.5.0:
12
13New features:
14^^^^^^^^^^^^^
15
16- Add version 2 of the security framework (introduced in ``security::v2`` namespace)
17
18 * :ref:`NDN Certificate Format Version 2.0 <NDN Certificate Format Version 2.0>`
19 (:issue:`3103`)
20 * New Public Information Base (PIB) and Trusted Program Module (TPM) framework to manage
21 public/private keys and NDN Certificate version 2.0 (:issue:`2948`, :issue:`3202`)
22 * New KeyChain implementation (:issue:`2926`)
23 * New Validator implementation (:issue:`3289`, :issue:`1872`)
24 * New security-supporting utilities: trust anchor container and certificate cache
25 * Creation of `Command Interests
26 <https://redmine.named-data.net/projects/ndn-cxx/wiki/CommandInterest>`__ delegated to
27 :ndn-cxx:`CommandInterestSigner` class, while the new KeyChain only :ref:`signs Interests
28 <Signed Interest>` (:issue:`3912`)
29
30- Enable validator to fetch certificates directly from the signed/command interest sender
31 (:issue:`3921`)
32
33- Add UP and DOWN kinds to :ndn-cxx:`FaceEventNotification` (issue:`3794`)
34
35- Add support for NIC-associated permanent faces in FaceUri (:issue:`3522`)
36
37- Add support for CongestionMark and Ack NDNLPv2 fields (:issue:`3797`, :issue:`3931`)
38
39- Add StrategyChoice equality operators and formatted output (:issue:`3903`)
40
41Improvements and bug fixes
42^^^^^^^^^^^^^^^^^^^^^^^^^^
43
44- Ensure that NACK callback is called for matching Interests, regardless of their nonce
45 (:issue:`3908`)
46
47- Optimize :ndn-cxx:`name::Component::compare` implementation (:issue:`3807`)
48
49- Fix memory leak in ndn-cxx:`Regex` (:issue:`3673`)
50
51- Correct NDNLPv2 rules for whether an unknown field can be ignored (:issue:`3884`)
52
53- Ensure that port numbers in FaceUri are 16 bits wide
54
55- Correct ValidityPeriod::isValid check (:issue:`2868`)
56
57- Fix encoding of type-specific TLV (:issue:`3914`)
58
59- Rename previously incorrectly named EcdsaKeyParams to EcKeyParams (:issue:`3135`)
60
61- Various documentation improvements, including ndn-cxx code style updates (:issue:`3795`, :issue:`3857`)
62
63Deprecated
64^^^^^^^^^^
65
66- Old security framework. All old security framework classes are moved to
67 ``ndn::security::v1`` namespace in this release and will be removed in the next release.
68
69 * ``v1::KeyChain``, use :ndn-cxx:`v2::KeyChain` instead
70
71 * ``v1::Validator`` interface and all implementations of this interface (``ValidatorRegex``,
72 ``ValidatorConfig``, ``ValidatorNull``). Use :ndn-cxx:`v2::Validator` and the
73 corresponding implementations of :ndn-cxx:`ValidationPolicy` interfaces (will be introduced
74 before 0.6.0 release).
75
76 * ``v1::SecPublicInfo`` and its implementation (``SecPublicInfoSqlite``), ``SecTpm`` and its
77 implementations (``SecTpmFile``, ``SecTpmOsx``). These classes are internal implementation
78 and not intended to be used without ``v1::KeyChain``. :ndn-cxx:`v2::KeyChain` internally
79 uses the newly introduced :ndn-cxx:`Pib` and :ndn-cxx:`Tpm` interfaces with their
80 corresponding implementations.
81
82 * ``v1::Certificate``, ``v1::IdentityCertificate``, ``v1::CertificateExtension``,
83 ``v1::CertificateSubjectDescription``, use :ndn-cxx:`v2::Certificate` and
84 :ndn-cxx:`AdditionalDescription`
85
86 * ``v1::SecuredBag``, use ``v2::SafeBag`` instead
87
88- Constant ``io::BASE_64``, use ``io::BASE64`` instead (:issue:`3741`)
89
90- Headers ``management/nfd-*``, use ``mgmt/nfd/*`` instead (:issue:`3760`)
91
92- ``ndn::crypto::sha256`` in favor of ``ndn::crypto::computeSha256Digest``
93
94- ``security/cryptopp.hpp`` header. Use ``security/v1/cryptopp.hpp`` when needed, avoid direct
95 include as CryptoPP dependency will be removed from future versions of the library.
96
97- ``security/identity-certificate.hpp`` header. Use ``security/v1/identity-certificate.hpp`` instead.
98
99- ``ndn::PublicKey``, ``ndn::Certificate``, ``ndn::IdentityCertificate``,
100 ``ndn::CertificateExtension``, ``ndn::CertificateSubjectDescription``. When necessary, use
101 ``security::v1::PublicKey``, ``security::v1::Certificate``, ``security::v1::IdentityCertificate``,
102 ``security::v1::CertificateExtension``, ``security::v1::CertificateSubjectDescription`` instead.
103 The next release will feature :ref:`a new version of NDN Certificate format
104 <NDN Certificate Format Version 2.0>`.