[Ndn-interest] [Question] Where is the public key should be stored?

Marc.Mosko at parc.com Marc.Mosko at parc.com
Mon Apr 17 09:00:52 PDT 2017


See replies in-line

On Apr 16, 2017, at 6:05 AM, Pengyuan Zhou <zpymyyn at gmail.com<mailto:zpymyyn at gmail.com>> wrote:

Hi Marc,

Thanks for your reply and interesting ideas.

I do have some more questions.
On 14 Apr 2017, at 21:09, Marc.Mosko at parc.com<mailto:Marc.Mosko at parc.com> wrote:

Pengyuan,

In general there is not the same idea of TLS handshakes because the trust anchors for content would not be the same as the replica name hosting that content in cache.  NDN has several tech reports on different ways to encrypt data that you can find in their publications section.

In the CICN community, we’ve addressed this mainly two ways:

1) The publisher includes the public key in the first content chunk (or a named pointed to it).  If the content is encrypted for a particular recipient, then the publisher wraps a symmetric key in the first chunk then generates per-chunk session keys based on the symmetric key and the chunk number (i.e. the chunk number becomes part of the IV in the AES algorithm’s key derivation).  In CICN, we’ve favored encapsulation encryption (i.e. there’s an unencrypted outer name used for transport and an inner name part of the wrapped encrypted object) as that leaks the least amount of information.

In that sense, encryption is not made on the fly, will that be vulnerable for those relative static content which exist in the network for long time?

Yes, this is the common publish-and-forget approach of ICN.  There are a variety of key-wrapping techniques to communicate a symmetric data key to a designated consumer (see the older CCNx way of doing it [1] or the link Jeff sent to the NDN group access control).  Both use techniques to wrap a symmetric keys for each consumer for some piece of data (there are a variety of technical differences and there are other proposals).

The larger picture is as you say, one-way encryption.  There are some advantages in this if your network model is disconnected (in time or space).  There are also some cryptographic disadvantages, such as needing to know all the consumers (to wrap the key for them), no forward secrecy, and correlation attacks.   It usually also has a lazy idea of revocation: to remove a group member one changes the keys going forward, but does not go backwards and re-encrypt under the assumption that whatever was previously published as readable has already been read (it’s could also be a huge computational endeavor).

Some have argued that for some content, e.g. static page elements from a bank page, it’s ok to use such an approach because an attacker already knows your going to that bank via the name (or IP address).  It’s only the personal information that needs session encryption.  I think as long as an attacker cannot gain more information about you (e.g. you download the “I’m super crazy rich” image vs the “I’m in debt” image) it could be ok, but that level of cognizance about what leaks information is often hard to see ahead of time (my example was pretty blatant).  It is safer to assume all page elements could leak information.

[1] https://github.com/ProjectCCNx/ccnx/blob/master/doc/specs/AccessControl/AccessControlSpecs01.pdf

2) When a replica name is known, for example the publisher lists that you can get the content from Comcast or Akamai, then the client can use a TLS like protocol to get session encryption to that replica.  See, for example, https://www.ietf.org/id/draft-wood-icnrg-ccnxkeyexchange-01.txt.  This form of opportunistic channel encryption does not replace the end-to-end manifest (or merkle hash tree) signing, but compliments it.  It also includes mechanisms where a user can authenticate to a publisher then get a re-direction token to continue a TLS-like session with a particular replica.

This seems interesting and I may misunderstood this. By publisher lists, does that assume that multiple publishers willing to provide same contents to users in a “sharing” way? If so, I’m wondering the feasibility due to the actual competition relationship of the publishers.

By “publisher lists” I meant that a single publisher (e.g. Hulu) publishes a list of the approved cached (e.g. Akamai, Comcast, Fastly).  It would sign this and make it public with some TTL.  A consumer can then learn the name of the caches (really CDNs) and match that against a certificate in the TLS-like (CCNxKE) transaction.  If a consumer did not know to trust a specific name, then you’d be vulnerable to MITM attacks trying to set up an opportunistic encrypted session.

The root of trust could be a 3rd party like today (e.g. verisign et al.) or could be provided in the “publisher list” or could be via some other mechanism like schematized trust.  One must ensure that whatever is used in this step is also resistant to MITM.

This establishes the outer security layer for an encrypted session that can then pass inner Interests and Data through it.  Those inner names do not need to be correlated to the outer names.  It thus achieves protection against observability without the publish-and-forget approach.  That said, it is still likely that a video provider (or other paywall content provider) would use broadcast encryption of the payloads and likely with non-obvious names.  Or other models, such as the paywall content provider running their own servers in the CDN’s network so the session encryption and inner object signing are all that is needed without an extra encryption layer.

This scheme is pretty similar to what happens today.  You connect to a publisher (e.g. www.hulu.com<http://www.hulu.com>) and that publisher gives you back a link to content that will then resolve (via DNS) to a CDN (e.g. a Fastly IP address).  One difference is that to get the “gold lock” the CDN is impersonating the publisher’s TLS certificate so the certificate name and URI host match.  In the CCNxKE approach, we decouple the channel session encryption from the content provenance, so you can separately trust both whom you talk to and what you talk about.

Marc


On Apr 14, 2017, at 11:55 AM, Pengyuan Zhou <zpymyyn at gmail.com<mailto:zpymyyn at gmail.com>> wrote:

Hi all,

According to my understanding, the KeyLocator has the storage location of the key.

My question is where normally should the key be stored, especially for secure transmission?

Since NDN is not end-to-end, there might not be thing like "TLS handshake”, or is there?

If not, then how does NDN realise the agreement of "Master Secret and Session key” (or sth. similar)?

Seems to me that all the key info including the KeyLocator are predefined before transmission, is that realistic?

There might be understanding, please correct me if so.

Thanks.

Best,
Pengyuan Zhou
University of Helsinki
_______________________________________________
Ndn-interest mailing list
Ndn-interest at lists.cs.ucla.edu<mailto:Ndn-interest at lists.cs.ucla.edu>
http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.lists.cs.ucla.edu/pipermail/ndn-interest/attachments/20170417/5d51f9f0/attachment.html>


More information about the Ndn-interest mailing list