New features:

-   Base
    -   The license under which the library is released is changed to Lesser GNU Public
        License version 3.0.
    -   New ways to use incoming Interest dispatching:
        -   New InterestFilter abstraction that supports filtering based on name prefixes
            and regular expressions.
        -   Separated Face::registerPrefix() and Face::setInterestFilter() methods allow
            distinct operations of registering with the local NDN forwarder and setting up
            application-specific OnInterest call dispatch using InterestFilters.
-   Security
    -   Add type dir trust-anchor in ValidatorConfig to add all certificates under the
        specified directory as trust anchors. The new option also allows periodic
        reloading trust anchors, allowing dynamic trust models.
    -   Added support for multiple signature types to PublicKey, SecPublicInfo
        abstractions
    -   New SignatureSha256WithEcdsa signature type
-   Wire encoding
    -   Data::getFullName() method to get Data packet name with implicit digest
    -   New Name::getSuccessor() method to get name successor
-   Management
    -   Support for ChannelStatus, StrategyChoice datasets
-   Build
    -   enabled support of precompiled headers for clang and gcc compilers to speed up
        compilation

Updates and bug fixes:

-   Wire encoding
    -   Nonce field is now encoded as 4-byte uint8_t value, as defined by NDN-TLV spec.
    -   Optimized Data packet signing

        KeyChain::sign method now pre-allocates EncodingBuffer, requests unsigned portion
        of Data using Data::wireEncode(EncodingBuffer, true), and then appends the
        resulting signature and prepends Data packet header. This way there is no extra
        memory allocation after Data packet is signed.

-   Security
    -   Allow user to explicitly specify the cert name prefix before 'KEY' component in
        ndnsec-certgen
    -   SignatureSha256 has been renamed to DigestSha256 to conform with NDN-TLV
        specification.
    -   Add checking of Timestamp and Nonce fields in signed Interest within
        ValidatorConfig
    -   Allow validator customization using hooks:

        Sub-classes of Validator class can use the following hooks to fine-tune the
        validation process:

          -   Validator::preCertificateValidation to process
              received certificate before validation.
          -   Validator::onTimeout to process interest timeout
          -   Validator::afterCheckPolicy to process validation
              requests.

-   Other minor fixes and corrections

Deprecated:

-   SignatureSha256 class, use DigestSha256 instead.
-   All Face constructors that accept shared_ptr<io_service>.

    Use versions that accept reference to io_service object.

-   Face::ioService method, use Face::getIoService instead.
-   Interest constructor that accepts name, individual selectors, and individual guiders
    as constructor parameters.

    Use Interest().setX(...).setY(...) or use the overload taking Selectors

-   name::Component::toEscapedString method, use name::Component::toUri instead.
-   SecPublicInfo::addPublicKey method, use SecPublicInfo::addKey instead.
-   Tlv::ConentType constant (typo), use Tlv::ContentType instead.

Removed:

-   support of ndnd-tlv (only NFD management protocol is supported now)
-   SecPublicInfoMemory and SecTpmMemory classes that were no longer used
-   Removing concept of periodic event from Scheduler.

    In applications, periodic events should be just re-scheduled within the callback for
    single-shot events.
  1. 5ec0ee3 security: Support ECDSA verification in all related classes. by Yingdi Yu · 10 years ago
  2. 72a1178 utils: Removing concept of periodic event from Scheduler by Alexander Afanasyev · 10 years ago
  3. 0f5fb69 security: Include timestamp and nonce in signed interest and provide timestamp checking in ValidatorConf by Yingdi Yu · 10 years ago
  4. 197e565 data: Optimize Data signing by Alexander Afanasyev · 10 years ago
  5. 285c2cf utils: Allow resetting command interest validator rules by Alexander Afanasyev · 10 years ago
  6. c169a81 src: Switching to LGPL 3.0 license by Alexander Afanasyev · 10 years ago
  7. 9c57818 src: Making use of DEPRECATED macro and updating library code not to use deprecated methods by Alexander Afanasyev · 10 years ago
  8. 258ec2b src: Refactoring common.hpp and minimizing exposed includes by Alexander Afanasyev · 10 years ago
  9. 770827c docs: Updating doxygen comments and minor update to normalize API by Alexander Afanasyev · 10 years ago
  10. fc7d33a src: Removing deprecated logging facility by Alexander Afanasyev · 10 years ago
  11. f73f063 src: Removing unnecessary use of cref() in concert with make_shared by Alexander Afanasyev · 10 years ago
  12. 9016496 face: Implementing InterestFilter abstraction to be used with setInterestFilter by Alexander Afanasyev · 11 years ago
  13. b6b21b3 util: Correcting code style in regular expression implementation by Alexander Afanasyev · 10 years ago
  14. b67090a build+tests: Fixing c++11 mode compilation and correcting integrated test with faces by Alexander Afanasyev · 10 years ago
  15. 0fc447c security: Adding wildcard support in CommandInterestValidator by Yingdi Yu · 10 years ago
  16. e66bf2a face: Specify signing certificate/identity in setInterestFilter/unsetInterestFilter by Yingdi Yu · 10 years ago
  17. f56c68f security: Construct KeyChain from configuration file. by Yingdi Yu · 10 years ago
  18. dfa52c4 docs: Updating documentation and license boilerplates in all files by Alexander Afanasyev · 10 years ago
  19. 766cea7 ====== Renaming library to ndn-cxx ====== by Alexander Afanasyev · 10 years ago
  20. 2a7f720 exceptions: Make Tlv::Error a base class for all packet-processing exceptions by Alexander Afanasyev · 10 years ago
  21. fdbfc6d src: Improving consistency and correcting code style by Alexander Afanasyev · 10 years ago
  22. 53af7a1 util: Implementing conversion to/from system_clock::TimePoint with customized format by Alexander Afanasyev · 10 years ago
  23. b78bc4d build: add -std=c++03 (in non C++11 mode) and -pedantic to the default CXXFLAGS by Alexander Afanasyev · 10 years ago
  24. b1db7c6 build: Warnings correction for gcc 4.2 by Alexander Afanasyev · 10 years ago
  25. 449e114 security: fix CommandInterestValidator bug (no check on signature type) by Yingdi Yu · 10 years ago
  26. 48e8c0c security: Add configuration based validator by Yingdi Yu · 10 years ago
  27. 482ccc5 build: suppress CryptoPP warnings by Junxiao Shi · 10 years ago
  28. 1dd95c5 src: Enabling -Werror in debug mode and some style updates by Alexander Afanasyev · 10 years ago
  29. c07b3a2 util, transport: add configuration file support and make default unix socket configurable by Steve DiBenedetto · 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. f50098d util: Add helper method to load/save object from/to file. by Yingdi Yu · 11 years ago
  34. c4f6fd7 util: Merge helpers folder into util. by Yingdi Yu · 11 years ago
  35. 36b84cf util+build: Build optimization with regex util by Alexander Afanasyev · 11 years ago
  36. 809805d encoding: Optimized Data packet encoding, preparation for memory-efficient signing operation by Alexander Afanasyev · 11 years ago
  37. 17bc301 security: Add helpers for Command Interest by Yingdi Yu · 11 years ago
  38. c8823bc face: Refactored code to set interest filter by Alexander Afanasyev · 11 years ago
  39. e2dcdfd build: Experimental support to build using precompiled headers by Alexander Afanasyev · 11 years ago
  40. 9c7ed11 src: Fixing signed/unsigned comparison warnings and removing all warning-suppressing pragmas by Alexander Afanasyev · 11 years ago
  41. 95e8c2f name: Optimization of Name implementation by Alexander Afanasyev · 11 years ago
  42. e9fdb80 face: Fixing face registration protocol by ensuring uniqueness of each command interest by Alexander Afanasyev · 11 years ago
  43. f2a8209 util: Fix rescheduling and add test case. by Yingdi Yu · 11 years ago
  44. ab13655 util: fix "delete event in the same event" bug in scheduler. by Yingdi Yu · 11 years ago
  45. 274f2b0 src: Fixing several includes by Alexander Afanasyev · 11 years ago
  46. 5e97420 util: Adding regex support. by Yingdi Yu · 11 years ago
  47. f646889 util: Importing scheduler, originally implemented in NFD by Alexander Afanasyev · 11 years ago
  48. 1950885 build+src: Updating common.hpp to import (std|boost)::(shared_ptr|function|...) into ndn namespace by Alexander Afanasyev · 11 years ago
  49. 09c613f src: Another round of source updates: moving all headers close to implementation files by Alexander Afanasyev · 11 years ago
  50. 1e0a077 build: Fixing build and unit tests by Alexander Afanasyev · 11 years ago
  51. d409d59 build: Finalizing waf building system (removing legacy code) by Alexander Afanasyev · 11 years ago
  52. 61ec272 renaming: ndn-cpp to ndn-cpp-dev by Yingdi Yu · 11 years ago
  53. 94a356e c/util: Making util/crypto.h a public header by Alexander Afanasyev · 11 years ago
  54. 54467af build: Fixing gcc compilation by Alexander Afanasyev · 11 years ago
  55. b24a68a node: Fixing "bugs": default interest timeout not infitine; ndnid fetcher was doing hash calculation over the wrong data set by Alexander Afanasyev · 11 years ago
  56. bf1a67a security: Porting security elements to the updated framework by Alexander Afanasyev · 11 years ago
  57. e2e3ca5 c++-util: Add helper to convert time to/from string by Alexander Afanasyev · 11 years ago
  58. e2e0d75 face+transport: Cleanup and preparation for implementation of fully async Face operations by Alexander Afanasyev · 11 years ago
  59. af283d8 name: Converting Name to TLV by Alexander Afanasyev · 11 years ago
  60. 8e96e58 src: Adding conditional compilation against boost or bundled "ndnboost" by Alexander Afanasyev · 11 years ago
  61. 44929d0 util: Fix typo on logging.hpp for include common.hpp. by Jeff Thompson · 11 years ago
  62. c38ee7f encoding: In DynamicUInt8Vector, get should return a non-const result. by Jeff Thompson · 11 years ago
  63. 2db6037 files: Rename ndn-cpp/ to src/. Updated Makefile.am. Refs #1054. by Jeff Thompson · 11 years ago