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. cfe0b06 build: Changing the way version is managed by Alexander Afanasyev · 10 years ago ndn-cxx-0.1.0
  2. 27b0e39 tools: tlvdump can decode Block from stream directly by Yingdi Yu · 10 years ago
  3. f56c68f security: Construct KeyChain from configuration file. by Yingdi Yu · 10 years ago
  4. dfa52c4 docs: Updating documentation and license boilerplates in all files by Alexander Afanasyev · 10 years ago
  5. 766cea7 ====== Renaming library to ndn-cxx ====== by Alexander Afanasyev · 10 years ago
  6. 05842f2 tools: Adjust ndnsec-cert-gen behaivor by Yingdi Yu · 10 years ago
  7. fdbfc6d src: Improving consistency and correcting code style by Alexander Afanasyev · 10 years ago
  8. b1db7c6 build: Warnings correction for gcc 4.2 by Alexander Afanasyev · 10 years ago
  9. 482ccc5 build: suppress CryptoPP warnings by Junxiao Shi · 10 years ago
  10. b61f540 security: Correct code style for ndnsec and add command-line exception handling by Yingdi Yu · 10 years ago
  11. 5c1f841 tools: Add delete option in ndnsec by Yingdi Yu · 10 years ago
  12. 1dd95c5 src: Enabling -Werror in debug mode and some style updates by Alexander Afanasyev · 10 years ago
  13. 4b98e8c name: Implementing appendNumber/toNumber to use nonNegativeInteger by Alexander Afanasyev · 10 years ago
  14. aa0e7da all: Refactoring work with time using boost::chrono by Alexander Afanasyev · 10 years ago
  15. 64c3fb4 security: Add a wrapper for export/import information. by Yingdi Yu · 10 years ago
  16. f8fc8de security: Bug fixing by Yingdi Yu · 10 years ago
  17. 8d7468f tools: Combine all security tools into one; Add Export/Import/Delete/Unlock/AddACL command by Yingdi Yu · 10 years ago
  18. be4150e security: Adjust unlocking TPM process. by Yingdi Yu · 10 years ago
  19. 4b45628 tlv: Another set of changes to update TLV type re-assignment by Alexander Afanasyev · 10 years ago
  20. 6835ad8 tlv: !!! MAJOR CHANGE !!! Changed TLV codes by Alexander Afanasyev · 10 years ago
  21. 29e5c3d encoding: Fixing Block (and as a result Name) encoding bugs by Alexander Afanasyev · 10 years ago
  22. 0222fba api: Major API change. OnInterest/OnData callbacks now use just references, not shared pointers by Alexander Afanasyev · 10 years ago
  23. e289b53 face: Implementing nfd::Controller by Alexander Afanasyev · 10 years ago
  24. 9c7ed11 src: Fixing signed/unsigned comparison warnings and removing all warning-suppressing pragmas by Alexander Afanasyev · 10 years ago
  25. 95e8c2f name: Optimization of Name implementation by Alexander Afanasyev · 10 years ago
  26. e6bfab2 tools: Add security tools; Add waf build options for tools. by Yingdi Yu · 10 years ago
  27. 09c613f src: Another round of source updates: moving all headers close to implementation files by Alexander Afanasyev · 10 years ago
  28. 1e0a077 build: Fixing build and unit tests by Alexander Afanasyev · 10 years ago
  29. 200dd6f build: Finalizing build system conversion by Alexander Afanasyev · 10 years ago
  30. d409d59 build: Finalizing waf building system (removing legacy code) by Alexander Afanasyev · 10 years ago
  31. a1ae0a1 build: Adding waf as a build system by Alexander Afanasyev · 10 years ago
  32. fffd1e4 renaming: Make names of the tools unique by Yingdi Yu · 11 years ago
  33. 61ec272 renaming: ndn-cpp to ndn-cpp-dev by Yingdi Yu · 11 years ago
  34. 89a889c tools/ndncatchunks: Enable MustBeFresh selector by Alexander Afanasyev · 11 years ago
  35. 8995f54 node+transport: Fixing bug that prevented reconnection to the forwarder after being disconnected for some reason by Alexander Afanasyev · 11 years ago
  36. c1ebbe9 tools: Disabling hardcoded Scope(1) for ndncatchunks tool by Alexander Afanasyev · 11 years ago
  37. 38d7968 tools: ndncatchunks and ndnputchunks tool by Wentao Shang · 11 years ago
  38. 303b350 tools: Adding tlvdump app that visualizes TLV encoding stored in files by Alexander Afanasyev · 11 years ago