ndn-lite icon indicating copy to clipboard operation
ndn-lite copied to clipboard

A lightweight NDN protocol stack with high-level application support including security bootstrapping, access control, trust management, etc.

Results 16 ndn-lite issues
Sort by recently updated
recently updated
newest added
trafficstars

5aea33b5f8ace2934d67a3f175c2c90229fdb9ec attempts to fix #56, but it is not a valid fix. It seems that I cannot reopen that issue, so I'm opening a new issue. RFC5869 does not limit...

Current ECC backend uses macro `FEATURE_PERIPH_HWRNG` to decide whether to use deterministic signing. ```c #ifndef FEATURE_PERIPH_HWRNG uint8_t tmp[NDN_SEC_ECC_SECP256R1_PRIVATE_KEY_SIZE + NDN_SEC_ECC_SECP256R1_PRIVATE_KEY_SIZE + NDN_SEC_ECC_SECP256R1_PUBLIC_KEY_SIZE]; uECC_SHA256_HashContext HashContext; uECC_SHA256_HashContext* ctx = &HashContext; ctx->uECC.init_hash =...

enhancement
security-backend

As of 097f568e0d55b60264f387c5d0b1770a5ce42ecf, `ndn_msgqueue_dispatch` can potentially cause address error exception due to unaligned load when running on MIPS32 architecture. The msgqueue operates on this data structure: ``` #pragma pack(1) typedef...

Timer discussion #11 got me think of our network face implementation might also be problematic. For example, current 802.15.4 face uses ISR to receive frames from network, and transfers data...

enhancement

The ndn-lite team has successfully finished the demo development in the 8th NDN Hackathon and won the second prize. During the development, our team members have identified a number of...

As in the title, can NDN-Lite be run to used as a forwarder, let's say between a client and a producer? Provided that: - Hop Limits are set - Clientside...