On Wed, Apr 7, 2010 at 10:26 PM, Dirk Pranke <span dir="ltr"><<a href="mailto:dpranke@chromium.org">dpranke@chromium.org</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">On Wed, Apr 7, 2010 at 2:14 PM, Nicholas Zakas <<a href="mailto:nzakas@yahoo-inc.com">nzakas@yahoo-inc.com</a>> wrote:<br>
> I’ve actually already seen a very common repeated pattern as it comes to<br>
> client-side data storage:<br>
><br>
> 1. “Hey let’s try using localStorage to improve our user experience.”<br>
><br>
> 2. “Sounds great, but the data can’t be stored in plain text if its user<br>
> data.”<br>
><br>
> 3. “That’s okay, we’ll just use the XYZ JavaScript encryption library.”<br>
><br>
> 4. “And then use it on every read and every write?”<br>
><br>
> 5. “Ugh, you’re right, nevermind.”<br>
><br>
<br>
</div>Presumably the "ugh" is a reaction to the perceived slowness of doing<br>
the crypto in JS? Has anyone<br>
benchmarked JS crypto performance compared to what the imagined C/C++<br>
perf would be?<br></blockquote><div><br></div><div>Or are there any actual examples of where someone was going to use JS crypto but abandoned it because it was too slow?  If the issue is that it's "too hard" but yet no one's bothered to make a library to make things easier, then honestly I find it hard to believe this is a super important issue to more than a handful of web developers.</div>

<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">
><br>
> I’ve had, or participated in, this conversation multiple times. I also know,<br>
> from speaking with others about this proposal, that this conversation isn’t<br>
> uncommon.<br>
><br>
><br>
><br>
> Again I’ll say I’m all for adding crypto into JavaScript. I think in<br>
> addition to that, there should be affordances for what will likely be common<br>
> usage patterns. To me, any and all mechanisms for client-side storage should<br>
> have some basic crypto built-in, so why not start here?<br>
><br>
><br>
><br>
> In regards to data expiration, part of ensuring the security of data is<br>
> knowing how long it will be stored on disk. If I let someone borrow my<br>
> computer to check their email, and the email client happens to save some<br>
> data onto the client, then that person’s data will now be on my disk for who<br>
> knows how long. That represents a data security issue. By allowing an<br>
> expiration date to be tied to the data, you can have reasonable assurance<br>
> that the data isn’t just going to be sitting around waiting for someone to<br>
> try and use it.<br>
><br>
<br>
</div>It is true that not having control over your data could be an issue, but simply<br>
embedding expiry into the data may not buy you much to protect it. Insofar<br>
as the crypto wouldn't be running in a TPM, it would be easy to reverse engineer<br>
it and extract the data; it would also be fairly easy to reset the<br>
clock on the device<br>
to keep data from being deleted.<br></blockquote><div><br></div><div>One thing that might be interesting is a way to cache large amounts of data that are deleted when the browser and/or tab closes.  This might be something for the new file system API to consider (hence adding ericu to the thread).  But time based controls aren't going to do anything more than give perceived security.  (In your use case, expiration doesn't add much actual security for the reasons Dirk mentioned.)</div>

<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I continue to think that the requirements for a secure storage API<br>
that fit a wide<br>
range of use cases are not particularly clear (and it would be easy to see this<br>
balloon into a wide API designed for lots of different corner cases).<br>
I think the ideal<br>
approach for this would be to build a JS-based implementation on top<br>
of the existing<br>
libraries and, if such a library sees wide adoption, push for it to be<br>
implemented natively.<br>
<br>
If there are fundamental missing primitives, then by all means we<br>
should look at adding<br>
them, but I'm not sure that we are missing anything.<br></blockquote><div><br></div><div>Yes.  We generally only add surface area to APIs (let alone APIs themselves) for use cases that are either not possible or performance problems.  Doing crypto in JS certainly seems as though it could be the latter.  Expiration is the former.  But for both, we need clear use cases that are not possible/practical today.</div>

<div><br></div><div>Despite me asking several times, you haven't given any clear use cases.  If you search the list archives, you'll find that whenever we talk about new APIs, they're very rooted in specific use cases.</div>

<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<font color="#888888"><br>
-- Dirk<br>
</font><div><div></div><div class="h5"><br>
><br>
><br>
> -Nicholas<br>
><br>
><br>
><br>
> ______________________________________________<br>
><br>
> Commander Lock: "Damnit Morpheus, not everyone believes what you believe!"<br>
><br>
> Morpheus: "My beliefs do not require them to."<br>
><br>
> ________________________________<br>
><br>
> From: <a href="mailto:whatwg-bounces@lists.whatwg.org">whatwg-bounces@lists.whatwg.org</a><br>
> [mailto:<a href="mailto:whatwg-bounces@lists.whatwg.org">whatwg-bounces@lists.whatwg.org</a>] On Behalf Of Jeremy Orlow<br>
> Sent: Tuesday, April 06, 2010 6:55 AM<br>
> To: Nicholas Zakas<br>
> Cc: <a href="mailto:whatwg@lists.whatwg.org">whatwg@lists.whatwg.org</a>; Dirk Pranke<br>
><br>
> Subject: Re: [whatwg] Proposal for secure key-value data stores<br>
><br>
><br>
><br>
> Sorry for misunderstanding your original suggestion.<br>
><br>
> On Wed, Mar 31, 2010 at 1:13 AM, Nicholas Zakas <<a href="mailto:nzakas@yahoo-inc.com">nzakas@yahoo-inc.com</a>><br>
> wrote:<br>
><br>
> I certainly can't argue against a focus on JS crypto. :) What I'd like to do<br>
> is eliminate what I believe will be a repeated pattern for developers in the<br>
> future. It would be really nice if, in addition to having access to crypto<br>
> functions, there was an area where I could stick data that would get<br>
> encrypted automatically (and of course, where I could be sure the data would<br>
> be eliminated after a set amount of time).<br>
><br>
><br>
><br>
> It seems to me that Dirk is right that crypto in the browser is a more<br>
> general problem and that a general crypto API would be much more valuable<br>
> than creating new APIs with similar/duplicate functionality + crypto.<br>
>  Optimizing for "repeated patterns" probably should wait until we see what<br>
> patterns are actually common.  :-)<br>
><br>
><br>
><br>
> My proposal is less about encryption and more about providing better control<br>
> over how data is stored and for how long.<br>
><br>
><br>
><br>
> Can you provide some concrete use cases for expiration of content?  They'd<br>
> probably have to be pretty dramatic to warrant creating yet another storage<br>
> mechanism.<br>
><br>
><br>
><br>
> Maybe this can somehow be integrated into IndexedDB?  There's very little<br>
> chance of it being a v1 feature, but maybe we could make sure it's possible<br>
> to add in future versions.<br>
><br>
><br>
><br>
> -Nicholas<br>
><br>
> ______________________________________________<br>
> Commander Lock: "Damnit Morpheus, not everyone believes what you believe!"<br>
> Morpheus: "My beliefs do not require them to."<br>
><br>
> -----Original Message-----<br>
><br>
> From: <a href="mailto:whatwg-bounces@lists.whatwg.org">whatwg-bounces@lists.whatwg.org</a><br>
> [mailto:<a href="mailto:whatwg-bounces@lists.whatwg.org">whatwg-bounces@lists.whatwg.org</a>] On Behalf Of Dirk Pranke<br>
> Sent: Tuesday, March 30, 2010 3:09 PM<br>
> To: Nicholas Zakas<br>
> Cc: <a href="mailto:whatwg@lists.whatwg.org">whatwg@lists.whatwg.org</a>; Jeremy Orlow<br>
> Subject: Re: [whatwg] Proposal for secure key-value data stores<br>
><br>
> On Tue, Mar 30, 2010 at 2:06 PM, Nicholas Zakas <<a href="mailto:nzakas@yahoo-inc.com">nzakas@yahoo-inc.com</a>><br>
> wrote:<br>
>> Yes, that's precisely what I'm talking about. It seems to me that this<br>
>> will end up being a pretty common pattern (encrypting/decrypting data stored<br>
>> locally).<br>
>><br>
>> The idea behind letting the key to be defined by the developer is to allow<br>
>> any usage that developers deem appropriate for the situation. For example,<br>
>> one might want to only use a server-generated key to access the data, in<br>
>> which case this data won't be available offline but will be used to<br>
>> supplement the online behavior. Another might determine the key based on<br>
>> some information in a cookie, which is less secure but does allow offline<br>
>> access while also ensuring that if the cookie changes or is deleted, the<br>
>> data remains secure.<br>
>><br>
>> The idea behind the expiration date is to allow developers to be sure the<br>
>> data won't stay around on disk indefinitely. Think about the Internet café<br>
>> use case where people are repeatedly logging in and out - we don't want<br>
>> everyone's data living on that computer for however many years it's in use.<br>
>><br>
>> One way or another, I think JavaScript crypto is going to be important in<br>
>> the next few years.<br>
><br>
> Perhaps we should instead focus on a set of JS Crypto APIs, since that<br>
> is largely orthogonal to the storage APIs?<br>
><br>
> -- Dirk<br>
><br>
><br>
</div></div></blockquote></div><br>