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. f82d13a security: Fixing memory leaks and properly handling non-existing keys by Alexander Afanasyev · 10 years ago ndn-cxx-0.1.0-rc1
  2. b67090a build+tests: Fixing c++11 mode compilation and correcting integrated test with faces by Alexander Afanasyev · 10 years ago
  3. 0fc447c security: Adding wildcard support in CommandInterestValidator by Yingdi Yu · 10 years ago
  4. 44d190c security: Add 'type any' for trust-anchor in ValidatorConfig by Yingdi Yu · 10 years ago
  5. 58f3371 security: Clean up ValidatorConfig when it is re-loaded. by Yingdi Yu · 10 years ago
  6. b52d028 security: Remove the old Validator constructors that take shared_ptr<Face> by Yingdi Yu · 10 years ago
  7. 45a3713 security: Mark KeyChain noncopyable to prevent potential crashes by Alexander Afanasyev · 10 years ago
  8. f56c68f security: Construct KeyChain from configuration file. by Yingdi Yu · 10 years ago
  9. dfa52c4 docs: Updating documentation and license boilerplates in all files by Alexander Afanasyev · 10 years ago
  10. 766cea7 ====== Renaming library to ndn-cxx ====== by Alexander Afanasyev · 10 years ago
  11. 5e96e00 security: Bug fixing by Yingdi Yu · 10 years ago
  12. 2a7f720 exceptions: Make Tlv::Error a base class for all packet-processing exceptions by Alexander Afanasyev · 10 years ago
  13. 96e6406 security: IMPORTANT CHANGE!! Change Validator constructor to accept Face& instead of shared_ptr<Face> by Yingdi Yu · 10 years ago
  14. 20a0696 security: Fix bug of checking signed interest in ValidatorConfig by Yingdi Yu · 10 years ago
  15. 4b8c6a2 src: Correcting coding style of security related code. by Yingdi Yu · 10 years ago
  16. 05842f2 tools: Adjust ndnsec-cert-gen behaivor by Yingdi Yu · 10 years ago
  17. fdbfc6d src: Improving consistency and correcting code style by Alexander Afanasyev · 10 years ago
  18. 3cca4ab security: Fix Validator::verifySignature bug by Yingdi Yu · 10 years ago
  19. b78bc4d build: add -std=c++03 (in non C++11 mode) and -pedantic to the default CXXFLAGS by Alexander Afanasyev · 10 years ago
  20. fcb4f6d build: Suppressing openssl deprecation flags on OSX by Alexander Afanasyev · 10 years ago
  21. dfa9d73 security: Enable load of ValidatorConf from a boost::property_tree section by Yingdi Yu · 10 years ago
  22. 59d67a5 build: Correction of OSX Security Framework detection by Alexander Afanasyev · 10 years ago
  23. ff2d08f data+interest+selectors+meta-info+signature: Implementing EqualityComparable concept by Alexander Afanasyev · 10 years ago
  24. b1db7c6 build: Warnings correction for gcc 4.2 by Alexander Afanasyev · 10 years ago
  25. 48e8c0c security: Add configuration based validator by Yingdi Yu · 10 years ago
  26. 482ccc5 build: suppress CryptoPP warnings by Junxiao Shi · 10 years ago
  27. 60bd708 security: Fix default identity bug by Yingdi Yu · 10 years ago
  28. 37e317f security: Move security-related files from ~/.ndnx to ~/.ndn by Yingdi Yu · 10 years ago
  29. 1dd95c5 src: Enabling -Werror in debug mode and some style updates by Alexander Afanasyev · 10 years ago
  30. aa0e7da all: Refactoring work with time using boost::chrono by Alexander Afanasyev · 10 years ago
  31. 110881d security: Change SHA256_DIGEST_LENGTH to SHA256_DIGEST_SIZE; by Yingdi Yu · 11 years ago
  32. 2115716 security: Add SignatureSha256 by Yingdi Yu · 11 years ago
  33. 64c3fb4 security: Add a wrapper for export/import information. by Yingdi Yu · 11 years ago
  34. c55680b security: Add prepareUnsignedIdentityCertificate method in KeyChain by Yingdi Yu · 11 years ago
  35. f8fc8de security: Bug fixing by Yingdi Yu · 11 years ago
  36. 40587c0 security: Add failureInfo in ValidationFailed callback by Yingdi Yu · 11 years ago
  37. 2e57a58 security: Consistent exception handling. by Yingdi Yu · 11 years ago
  38. 60c8681 name+security: Fixing bugs with empty name component comparison and failure handing in OSX tpm implementation by Alexander Afanasyev · 11 years ago
  39. be4150e security: Adjust unlocking TPM process. by Yingdi Yu · 11 years ago
  40. fc40d87 security: Add doxygen comments by Yingdi Yu · 11 years ago
  41. 8dceb1d security: Export/Import Identity from/into KeyChain by Yingdi Yu · 11 years ago
  42. 4b75275 security: Generate random block in Tpm. by Yingdi Yu · 11 years ago
  43. c348f83 encoding: Optimized encoding of Interest and related data structures by Alexander Afanasyev · 11 years ago
  44. 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
  45. 4447146 security: Fix wrong condition in SecPublicInfoSqlite3 by Alexander Afanasyev · 11 years ago
  46. 17bc301 security: Add helpers for Command Interest by Yingdi Yu · 11 years ago
  47. 29e5c3d encoding: Fixing Block (and as a result Name) encoding bugs by Alexander Afanasyev · 11 years ago
  48. 0222fba api: Major API change. OnInterest/OnData callbacks now use just references, not shared pointers by Alexander Afanasyev · 11 years ago
  49. e2dcdfd build: Experimental support to build using precompiled headers by Alexander Afanasyev · 11 years ago
  50. 5b60f70 sqlite3: Enabling option to disable filesystem locking (POSIX advisory locks) by Alexander Afanasyev · 11 years ago
  51. 9c7ed11 src: Fixing signed/unsigned comparison warnings and removing all warning-suppressing pragmas by Alexander Afanasyev · 11 years ago
  52. 2b2b479 security: Explicitly request password to unlock keychain by Yingdi Yu · 11 years ago
  53. 7056ce8 security: Fix a bug in generating new key id. by Yingdi Yu · 11 years ago
  54. 9a33535 security: Fix a bug of Validator, making checkPolicy methods pure abstract by Yingdi Yu · 11 years ago
  55. 6ac9798 security: Merging SecPolicy into Validator (previously Verifier) by Yingdi Yu · 11 years ago
  56. 3715f8d security: Adding SecPolicyRegex and related rules by Yingdi Yu · 11 years ago
  57. 7640cb3 security: Adding CertificateCache and CertificateCacheTtl by Yingdi Yu · 11 years ago
  58. 28fd32f security: Adding delete methods in KeyChain by Yingdi Yu · 11 years ago
  59. 4270f20 security: Adding supports to signed interest by Yingdi Yu · 11 years ago
  60. e07e339 security: Enabling SignedInterest processing in SecPolicy and Verifier. by Yingdi Yu · 11 years ago
  61. 1950885 build+src: Updating common.hpp to import (std|boost)::(shared_ptr|function|...) into ndn namespace by Alexander Afanasyev · 11 years ago
  62. 09c613f src: Another round of source updates: moving all headers close to implementation files by Alexander Afanasyev · 11 years ago
  63. d409d59 build: Finalizing waf building system (removing legacy code) by Alexander Afanasyev · 11 years ago
  64. 0b9c315 security: Changing file operation code in SecPublicInfoSqlite to use boost::filesystem. by Yingdi Yu · 11 years ago
  65. 874678f security: Hiding sqlite3 from the header of SecPublicInfoSqlite by Yingdi Yu · 11 years ago
  66. 0402092 security: Changing security storage location. Adding test case by Yingdi Yu · 11 years ago
  67. 2d9c50f security: Adding SecTpmFile which a pure file based "TPM". by Yingdi Yu · 11 years ago
  68. 3c5887c security: Moving signInTpm(Data& data, ...) from SecTpm to KeyChain. by Yingdi Yu · 11 years ago
  69. 61ec272 renaming: ndn-cpp to ndn-cpp-dev by Yingdi Yu · 11 years ago
  70. b4bb85a security: renaming methods by Yingdi Yu · 11 years ago
  71. 4f32463 security: renaming PolicyManager classess to SecPolicy___ and re-organize security file layout by Yingdi Yu · 11 years ago
  72. ea23f57 security: Fixing bug with signing in SecTpmOsx by Alexander Afanasyev · 11 years ago
  73. 88663af security: fixing bugs and adding methods by Yingdi Yu · 11 years ago
  74. 8758158 security: renaming sub-classess of SecPublicInfo and SecTpm and adapting corresponding interfaces by Yingdi Yu · 11 years ago
  75. 31b4af2 security: refactoring KeyChain and related classess by Yingdi Yu · 11 years ago
  76. 913b0c7 security: Changing Verifier::verifySignature method to be more generalized, so that users can avoid explicit exception processing by Yingdi Yu · 11 years ago
  77. 2abd73f security: Split KeyChain into signing (KeyChain) and verification (Verifier) interfaces by Yingdi Yu · 11 years ago
  78. 54467af build: Fixing gcc compilation by Alexander Afanasyev · 11 years ago
  79. d155da4 build: Conditional enabling of osx-private-key-storage compilation by Alexander Afanasyev · 11 years ago
  80. bdfa624 security: Change default osx keychain from NDN to login by Yingdi Yu · 11 years ago
  81. 736708b build: Fixing and suppressing all warnings by Alexander Afanasyev · 11 years ago
  82. 4440290 security+tests: Temporarily disable broken code by Alexander Afanasyev · 11 years ago
  83. 6be1a6a security+node: Fixing includes and removing deprecated files by Alexander Afanasyev · 11 years ago
  84. fab95ed security: Final fixes for (basic-)identity-storage by Alexander Afanasyev · 11 years ago
  85. bd5ba40 security: Change in KeyChain creation API by Alexander Afanasyev · 11 years ago
  86. 04b22a9 security: Signature interface change and initial fixes for OSX private key store by Alexander Afanasyev · 11 years ago
  87. e64788e security: Continue porting security elements to the updated framework by Alexander Afanasyev · 11 years ago
  88. b695b95 security: Adapting memory-based identity storage by Alexander Afanasyev · 11 years ago
  89. bf1a67a security: Porting security elements to the updated framework by Alexander Afanasyev · 11 years ago
  90. 049f8f7 security: Fixing decoding/encoding certificates. Now the test is fully working by Alexander Afanasyev · 11 years ago
  91. 0ea6e08 security: CryptoPP functions are used directly to encode/decode DER/BER by Alexander Afanasyev · 11 years ago
  92. 64a3d81 security: Preliminary work with security module changes by Alexander Afanasyev · 11 years ago
  93. 0c63211 identity-storage: copying ndn.cxx extensions to get information about the stored data by Alexander Afanasyev · 11 years ago
  94. 8e96e58 src: Adding conditional compilation against boost or bundled "ndnboost" by Alexander Afanasyev · 11 years ago
  95. 9afac39 security: In CertificateExtension, make toDer and derDerBlob const. Refs #1091. by Jeff Thompson · 11 years ago
  96. 61a25ff security: In CertificateSubjectDescription, make toDer and getOidString const. Refs #1091. by Jeff Thompson · 11 years ago
  97. 2105dbe security: internal: In Sha256WithRsaHandler, renamed verify to verifySignature. by Jeff Thompson · 11 years ago
  98. ce11576 In all .cpp files, remove using namespace ndn::ptr_lib and explicitly use ptr_lib::shared_ptr and make_shared. by Jeff Thompson · 11 years ago
  99. 71b2f87 Rename key.hpp to key-locator.hpp. Refs #1089. by Jeff Thompson · 11 years ago
  100. 40ada91 security: In IdentityManager::signByCertificate, when setting the KeyLocator keyName, use certificateName.getPrefix(-1) to remove the version number. Refs #1088. by Jeff Thompson · 11 years ago