commit | 3c5887ce4e7a2c1febb5dd4783c821f18cd74235 | [log] [tgz] |
---|---|---|
author | Yingdi Yu <yuyingdi@gmail.com> | Tue Jan 21 18:19:49 2014 -0800 |
committer | Yingdi Yu <yuyingdi@gmail.com> | Tue Jan 21 19:20:47 2014 -0800 |
tree | 431aafe6ae95c97c0ed97465bf65987577456261 | |
parent | 2715839103fd8c7cd2ba300ea2e01e674ba1baac [diff] |
security: Moving signInTpm(Data& data, ...) from SecTpm to KeyChain. The method is no longer a pure virtual method, and sub-classes of SecTpm do not have to implement this one. Although the method is now a part of KeyChain, but it is still named as signInTpm to be distinguished from the other sign methods of KeyChain. signInTpm takes the public key name as argument, well sign methods take certificate name as argument. Change-Id: I6a1546f760a7446341a152bb2f716032f2b7bb58
NDN-CPP is a new implementation of a Named Data Networking client library written in C++ and C.
It is wire format compatible with NDNx and PARC's CCNx.
NDN-CPP is open source under a license described in the file COPYING. While the license does not require it, we really would appreciate it if others would share their contributions to the library if they are willing to do so under the same license.
See the file INSTALL for build and install instructions.
Please submit any bugs or issues to the NDN-CPP issue tracker: http://redmine.named-data.net/projects/ndn-cpp/issues
The library currently requires a remote NDN daemon, and has been tested with ndnd, from the NDNx package: https://github.com/named-data/ndnx .
Currently, the library has two APIs for developers:
1. The C++ API which follows the NDN Common Client Library API also used by ndn-js (JavaScript) and PyNDN (Python). 2. A core C library implementing lower-level encoding and communication. Applications should normally use the C++ API, but core C code will also function on embedded devices and other environments which don't have C++ support.