blob: f08b6f0810eb868ac3d1298b1032f76bc8c8437c [file] [log] [blame] [view]
Davide Pesavento75a83842021-11-20 16:52:22 -05001# NDNCERT: NDN Certificate Management Protocol
Davide Pesavento85790012019-01-19 21:22:39 -05002
Davide Pesavento75a83842021-11-20 16:52:22 -05003[![CI](https://github.com/named-data/ndncert/actions/workflows/ci.yml/badge.svg)](https://github.com/named-data/ndncert/actions/workflows/ci.yml)
Davide Pesavento0d1d11c2022-04-11 22:11:34 -04004![Language](https://img.shields.io/badge/C%2B%2B-17-blue)
Zhiyic3837ff2016-12-13 17:00:00 -08005
Davide Pesavento552174c2020-04-16 01:54:08 -04006The NDN certificate management protocol (**NDNCERT**) enables automatic certificate management
7in NDN. In Named Data Networking (NDN), every entity should have a corresponding identity
8(namespace) and the corresponding certificate for this namespace. Moreover, entities need simple
9mechanisms to manage sub-identities and their certificates. NDNCERT provides flexible mechanisms
10to request certificates from a certificate authority (CA) and, as soon as the certificate is
11obtained, mechanisms to issue and manage certificates in the designated namespace. Note that
12NDNCERT does not impose any specific trust model or trust anchors. While the primary use case of
13this protocol is to manage NDN testbed certificates, it can be used with any other set of global
14and local trust anchors.
Zhiyic3837ff2016-12-13 17:00:00 -080015
Davide Pesavento552174c2020-04-16 01:54:08 -040016See [our GitHub wiki](https://github.com/named-data/ndncert/wiki) for more details.
Zhiyic3837ff2016-12-13 17:00:00 -080017
Davide Pesavento552174c2020-04-16 01:54:08 -040018## Reporting bugs
19
20Please submit any bug reports or feature requests to the
21[NDNCERT issue tracker](https://redmine.named-data.net/projects/ndncert/issues).
22
23## Contributing
24
25We greatly appreciate contributions to the NDNCERT code base, provided that they are
Davide Pesavento95657aa2023-02-12 17:14:32 -050026licensed under the GNU GPL version 3 or a compatible license.
27If you are new to the NDN software community, please read our [Contributor's Guide](
28https://github.com/named-data/.github/blob/main/CONTRIBUTING.md) to get started.
Davide Pesavento552174c2020-04-16 01:54:08 -040029
30## License
31
Davide Pesavento95657aa2023-02-12 17:14:32 -050032NDNCERT is free software distributed under the GNU General Public License version 3.
33See [`COPYING.md`](COPYING.md) for details.