ndn-cxx v0.1.0 Release Notes
============================

Version 0.1.0 is the initial release of ndn-cxx, an NDN C++ library with eXperimental eXtensions.

Originally based on [ndn-cpp library](https://github.com/named-data/ndn-cpp) the ndn-cxx library
adopts a slightly different design philosophy (including an extensive use of Boost libraries to
facilitate development, as well as the use of Crypto++ library to support cryptographic operations),
and includes a number of extensions that aim to simplify NDN application development.

The current features include:

-   **Base**
    -   Fully asynchronous, event-driven communication model, which is implemented using
        [Boost.Asio](http://www.boost.org/doc/libs/1_48_0/doc/html/boost_asio.html)
    -   Single-threaded, but thread-safe Face operations

        > A single Face object can be safely used in multiple threads to express Interests and
        > publish Data packets

    -   Explicit time management for NDN operations using
        [Boost.Chrono](http://www.boost.org/doc/libs/1_48_0/doc/html/chrono.html)
    -   Simplified and extended [NDN API](doxygen/annotated.html)
    -   Extensive set of unit-tests based on [Boost.Test
        framework](http://www.boost.org/doc/libs/1_48_0/libs/test/doc/html/index.html)
        -   Continuous integration using an in-house installation of Jenkins build bots and the
            hosted [Travis CI](https://travis-ci.org/named-data/ndn-cxx) continuous integration
            service compile and verify correctness of the library for each commit

-   **Wire format**
    -   Full support of [NDN-TLV packet format v0.1](http://named-data.net/doc/NDN-TLV/0.1/)
    -   Pure C++ implementation of wire encoding/decoding with simple access to wire format of all
        NDN packet abstractions via `wireEncode` and `wireDecode` methods

        > In many cases, NDN packet abstractions are just "indices" to the wire format

-   **Communication with the forwarder**
    -   Enable connecting to local forwarder via UNIX and TCP transports and to remote forwarders
        using TCP transport
    -   Full support for communication with [Named Data Networking Forwarding Daemon
        (NFD)](https://github.com/named-data/NFD)
        -   Full support for [NFD management
            protocols](http://redmine.named-data.net/projects/nfd/wiki/Management) to NFD status
            information, create and manage NFD Faces, receive NFD Face status change notifications,
            update StrategyChoice for namespaces, and manage routes in RIB
        -   Support for
            [LocalControlHeader](http://redmine.named-data.net/projects/nfd/wiki/LocalControlHeader)
            to implement special NDN applications that need low-level control of NDN packet
            forwarding
-   **Security support**
    -   A set of security primitives to allowing implementation of secure NDN applications in a
        simplified manner
        -   **KeyChain**: provides simple interfaces of packet signing, and key and certificate
            management
        -   **ValidatorConfig**: validator that implements trust model defined in a configuration
            file
        -   **CommandInterestGenerator** and **CommandInterestValidator**: convenient helpers to
            produce and validate command interests, while preventing potential replay attacks
    -   Several implementations of trusted platform modules to securely manage private keys
        -   **SecTpmOsx**: TPM based on OSX KeyChain (OSX-specific)
        -   **SecTpmFile**: TPM that uses file-based access control to protect keys (cross-platform)
    -   Extensive set of security command-line tools to manage security identities and certificates
        -   Generating private/public keys
        -   Issuing certificates
        -   Exporting/importing identities
        -   Managing default security settings
-   **Miscellaneous tools**
    -   Scheduler to support delayed time operations
    -   NDN regular expressions
    -   Simple config file to alter various aspects of the library
    -   **tlvdump**: a simple tool to visualize TLV-encoded blocks
  1. be4150e security: Adjust unlocking TPM process. by Yingdi Yu · 11 years ago
  2. fc40d87 security: Add doxygen comments by Yingdi Yu · 11 years ago
  3. 8dceb1d security: Export/Import Identity from/into KeyChain by Yingdi Yu · 11 years ago
  4. 4b75275 security: Generate random block in Tpm. by Yingdi Yu · 11 years ago
  5. 21abc10 management: Correcting self-registration using raw NFD FIB Management protocol by Alexander Afanasyev · 11 years ago
  6. 8301835 face+management: Fixing incorrect condition for adding LocalControlHeader in Face::put by Alexander Afanasyev · 11 years ago
  7. a99e37e management: nfdc support and link error fix by hilata · 11 years ago
  8. 5964fb7 management: Making LocalControlHeader encoding independent of Interest/Data wire by Alexander Afanasyev · 11 years ago
  9. 0553cd5 management: Implementing nrd::PrefixRegOptions for NRD Face management protocol by Alexander Afanasyev · 11 years ago
  10. 6d48bc1 management: Finalizing LocalControlHeader implementation by Alexander Afanasyev · 11 years ago
  11. f9fa52f management: Add support to local control header. by Yingdi Yu · 11 years ago
  12. f39c537 face: Making class variables names more consistent by Alexander Afanasyev · 11 years ago
  13. 36b84cf util+build: Build optimization with regex util by Alexander Afanasyev · 11 years ago
  14. 9cbf70a helpers: Several optimizations with command interest helpers by Alexander Afanasyev · 11 years ago
  15. 809805d encoding: Optimized Data packet encoding, preparation for memory-efficient signing operation by Alexander Afanasyev · 11 years ago
  16. c348f83 encoding: Optimized encoding of Interest and related data structures by Alexander Afanasyev · 11 years ago
  17. 1515131 encoding: Extending Block and EncodingBuffer interfaces by Alexander Afanasyev · 11 years ago
  18. 233750e encoding: Fixing bugs in EncodingBlock and Block by Alexander Afanasyev · 11 years ago
  19. 8460afb face: Mark Face class as noncopyable by Alexander Afanasyev · 11 years ago
  20. f7ca320 face: Making environment-based selection of the daemon (ndnd-tlv vs. nfd) by Alexander Afanasyev · 11 years ago
  21. 4b45628 tlv: Another set of changes to update TLV type re-assignment by Alexander Afanasyev · 11 years ago
  22. 95b0e34 data: Implementing FinalBlockId in Data packet's MetaInfo section by Alexander Afanasyev · 11 years ago
  23. 71b6768 security: Fix a bug in CommandInterestGenerator by Yingdi Yu · 11 years ago
  24. d337049 management: Add FaceManagementOptions by Yingdi Yu · 11 years ago
  25. 3e08d5d security: New --without-osx-keychain option to disable use of OSX Keychain as a default TPM on Darwin platform by Alexander Afanasyev · 11 years ago
  26. 6835ad8 tlv: !!! MAJOR CHANGE !!! Changed TLV codes by Alexander Afanasyev · 11 years ago
  27. 4447146 security: Fix wrong condition in SecPublicInfoSqlite3 by Alexander Afanasyev · 11 years ago
  28. a68aa7f face: Fix a serious bug with incoming interests processing by Alexander Afanasyev · 11 years ago
  29. 2ff94df encoding: Removing unnecessary explicit instantiations of wireEncode by Alexander Afanasyev · 11 years ago
  30. bf9671d management: Fixing regression with ndnd prefix/face registration by Alexander Afanasyev · 11 years ago
  31. 12dfbad face: Fixing small bug: after unregistering prefix, close transport if by Alexander Afanasyev · 11 years ago
  32. 17bc301 security: Add helpers for Command Interest by Yingdi Yu · 11 years ago
  33. 29e5c3d encoding: Fixing Block (and as a result Name) encoding bugs by Alexander Afanasyev · 11 years ago
  34. d79fc2a management: Fix exception handling in nfd::Controller by Alexander Afanasyev · 11 years ago
  35. 10257b1 interest: Add setExclude function for Interest abstraction by chenatu · 11 years ago
  36. 0222fba api: Major API change. OnInterest/OnData callbacks now use just references, not shared pointers by Alexander Afanasyev · 11 years ago
  37. e289b53 face: Implementing nfd::Controller by Alexander Afanasyev · 11 years ago
  38. 380420b name: Converting name to use EncodingBuffer by Alexander Afanasyev · 11 years ago
  39. c8823bc face: Refactored code to set interest filter by Alexander Afanasyev · 11 years ago
  40. e2dcdfd build: Experimental support to build using precompiled headers by Alexander Afanasyev · 11 years ago
  41. 5b60f70 sqlite3: Enabling option to disable filesystem locking (POSIX advisory locks) by Alexander Afanasyev · 11 years ago
  42. 9c7ed11 src: Fixing signed/unsigned comparison warnings and removing all warning-suppressing pragmas by Alexander Afanasyev · 11 years ago
  43. 52eb20d name: Fixes and improvements in Name and name::Component classes by Alexander Afanasyev · 11 years ago
  44. 035c7b4 exclude: Fixes of Exclude and adding unit tests for the exclude filter by Alexander Afanasyev · 11 years ago
  45. 95e8c2f name: Optimization of Name implementation by Alexander Afanasyev · 11 years ago
  46. 8ea763d encoding: Fixes in Block: using std::vector for subblocks and allowing block with empty value by Alexander Afanasyev · 11 years ago
  47. 187bc48 encoding: Allow creation of a Block from EncodingBuffer by Alexander Afanasyev · 11 years ago
  48. 217325b encoding: Extended version of EncodingBuffer (allow buffer length estimation) by Alexander Afanasyev · 11 years ago
  49. a4e5767 interest+data: Add incomingFaceId into Interest and Data. by Yingdi Yu · 11 years ago
  50. e9fdb80 face: Fixing face registration protocol by ensuring uniqueness of each command interest by Alexander Afanasyev · 11 years ago
  51. f2a8209 util: Fix rescheduling and add test case. by Yingdi Yu · 11 years ago
  52. 2b2b479 security: Explicitly request password to unlock keychain by Yingdi Yu · 11 years ago
  53. 7794921 fast-encoding: implement fast encoding for Name, NameComponent and FibManagementOptions, including test case. by Wentao Shang · 11 years ago
  54. ab13655 util: fix "delete event in the same event" bug in scheduler. by Yingdi Yu · 11 years ago
  55. 7056ce8 security: Fix a bug in generating new key id. by Yingdi Yu · 11 years ago
  56. 9a33535 security: Fix a bug of Validator, making checkPolicy methods pure abstract by Yingdi Yu · 11 years ago
  57. 196b9aa data: Ensure that content block always exists, even content wasn't set explicitly by Alexander Afanasyev · 11 years ago
  58. 73f428d management: fix include name.hpp by Steve DiBenedetto · 11 years ago
  59. 274f2b0 src: Fixing several includes by Alexander Afanasyev · 11 years ago
  60. 6ac9798 security: Merging SecPolicy into Validator (previously Verifier) by Yingdi Yu · 11 years ago
  61. 0d92081 face: Expose ioService from Node and Face. by Yingdi Yu · 11 years ago
  62. 4d5e1de nfd-control: Implementation of FibManagementOptions data structure by Wentao Shang · 11 years ago
  63. eaf105c nfd-control: Adding class of ControlResponse by Alexander Afanasyev · 11 years ago
  64. 3715f8d security: Adding SecPolicyRegex and related rules by Yingdi Yu · 11 years ago
  65. 7640cb3 security: Adding CertificateCache and CertificateCacheTtl by Yingdi Yu · 11 years ago
  66. 5e97420 util: Adding regex support. by Yingdi Yu · 11 years ago
  67. 28fd32f security: Adding delete methods in KeyChain by Yingdi Yu · 11 years ago
  68. 4270f20 security: Adding supports to signed interest by Yingdi Yu · 11 years ago
  69. e07e339 security: Enabling SignedInterest processing in SecPolicy and Verifier. by Yingdi Yu · 11 years ago
  70. f646889 util: Importing scheduler, originally implemented in NFD by Alexander Afanasyev · 11 years ago
  71. 1950885 build+src: Updating common.hpp to import (std|boost)::(shared_ptr|function|...) into ndn namespace by Alexander Afanasyev · 11 years ago
  72. 09c613f src: Another round of source updates: moving all headers close to implementation files by Alexander Afanasyev · 11 years ago
  73. 1e0a077 build: Fixing build and unit tests by Alexander Afanasyev · 11 years ago
  74. d409d59 build: Finalizing waf building system (removing legacy code) by Alexander Afanasyev · 11 years ago
  75. 0b9c315 security: Changing file operation code in SecPublicInfoSqlite to use boost::filesystem. by Yingdi Yu · 11 years ago
  76. 20d2c58 transport: Implementing TcpTransport by Alexander Afanasyev · 11 years ago
  77. fb44c97 node: Need to explicitly specify MustBeFresh, othewise subsequent self-registrations will not work by Alexander Afanasyev · 11 years ago
  78. b790d95 face+node: Improving async operations by Alexander Afanasyev · 11 years ago
  79. 6e9fc18 node: Fix of getting a pointer to the static member function (& necessary for some compilers) by Jeff Thompson · 11 years ago
  80. 874678f security: Hiding sqlite3 from the header of SecPublicInfoSqlite by Yingdi Yu · 11 years ago
  81. afc45a9 name: Added compare and comparison operators. Remove breadthFirstLess by Jeff Thompson · 11 years ago
  82. 0402092 security: Changing security storage location. Adding test case by Yingdi Yu · 11 years ago
  83. 2d9c50f security: Adding SecTpmFile which a pure file based "TPM". by Yingdi Yu · 11 years ago
  84. 3c5887c security: Moving signInTpm(Data& data, ...) from SecTpm to KeyChain. by Yingdi Yu · 11 years ago
  85. 2715839 encoding: Construct Block from istream by Yingdi Yu · 11 years ago
  86. 19dea68 c/util: Correcting qualifiers for memory operations by Alexander Afanasyev · 11 years ago
  87. 61ec272 renaming: ndn-cpp to ndn-cpp-dev by Yingdi Yu · 11 years ago
  88. 929e86d interest/tlv: Do not encode InterestLifetime if it has default value (4sec) by Alexander Afanasyev · 11 years ago
  89. 8995f54 node+transport: Fixing bug that prevented reconnection to the forwarder after being disconnected for some reason by Alexander Afanasyev · 11 years ago
  90. b4bb85a security: renaming methods by Yingdi Yu · 11 years ago
  91. 4f32463 security: renaming PolicyManager classess to SecPolicy___ and re-organize security file layout by Yingdi Yu · 11 years ago
  92. ea23f57 security: Fixing bug with signing in SecTpmOsx by Alexander Afanasyev · 11 years ago
  93. 88663af security: fixing bugs and adding methods by Yingdi Yu · 11 years ago
  94. 8758158 security: renaming sub-classess of SecPublicInfo and SecTpm and adapting corresponding interfaces by Yingdi Yu · 11 years ago
  95. 31b4af2 security: refactoring KeyChain and related classess by Yingdi Yu · 11 years ago
  96. 913b0c7 security: Changing Verifier::verifySignature method to be more generalized, so that users can avoid explicit exception processing by Yingdi Yu · 11 years ago
  97. 2abd73f security: Split KeyChain into signing (KeyChain) and verification (Verifier) interfaces by Yingdi Yu · 11 years ago
  98. 94a356e c/util: Making util/crypto.h a public header by Alexander Afanasyev · 11 years ago
  99. 7b4a7fc name+data: Small improvements by Alexander Afanasyev · 11 years ago
  100. 50ca627 transport/unix: Fixing segfault due to errorneous creation of multiple UnixTransport::Impl instances by Alexander Afanasyev · 11 years ago