#2165 closed enhancement (fixed)

use bigger random one-time keys, rename to "timing_safe_compare"

Reported by: zooko Owned by: daira
Priority: normal Milestone: 1.10.1
Component: code Version: 1.10.0
Keywords: cleanup security timing Cc:
Launchpad Bug:

Description

Because of this advice from Marsh Ray and Solar Designer: https://twitter.com/zooko/status/431105294777597952

Change History (13)

comment:2 Changed at 2014-02-06T12:50:04Z by zooko

  • Keywords review-needed added

comment:3 Changed at 2014-02-06T16:59:40Z by zooko

  • Keywords reviewed added; review-needed removed

Here is Solar Designer's reviewcomment: https://twitter.com/solardiz/status/431414358846230528

Last edited at 2014-02-09T18:20:13Z by daira (previous) (diff)

comment:4 follow-up: Changed at 2014-02-07T20:34:07Z by daira

  • Component changed from unknown to code
  • Keywords reviewed removed
  • Owner changed from daira to zooko

Is the pull request attached to the right branch? It seems to be a branch that includes patches for #1382, which makes it difficult to review.

comment:5 Changed at 2014-02-09T18:18:12Z by daira

  • Keywords cleanup security timing added
  • Milestone changed from undecided to 1.11.0

comment:6 in reply to: ↑ 4 Changed at 2014-02-24T18:28:43Z by zooko

Replying to daira:

Is the pull request attached to the right branch? It seems to be a branch that includes patches for #1382, which makes it difficult to review.

Whoops, sounds like I accidentally used the wrong branch. If someone else could fix that for me, that would be fine, or else I will do so when I get a minute…

comment:7 Changed at 2014-02-24T18:49:06Z by daira

  • Keywords reviewed added
  • Owner changed from zooko to daira
  • Status changed from new to assigned

I reviewed https://github.com/zooko/tahoe-lafs/commit/a79b6927af57dc701af2f9037f11accc324a9cfb and it looks fine, other than being on the wrong branch. I'll commit it to trunk.

comment:8 Changed at 2014-02-24T20:45:00Z by Daira Hopwood <daira@…>

  • Resolution set to fixed
  • Status changed from assigned to closed

In 6ca5f5fc39650de55c9d93ceef5f275b80a100d1/trunk:

Use bigger random one-time keys in timing_safe_compare. fixes #2165

Follows this advice from Marsh Ray and Solar Designer: https://twitter.com/zooko/status/431105294777597952

Signed-off-by: Daira Hopwood <daira@…>

comment:9 Changed at 2014-02-24T20:48:15Z by daira

  • Keywords reviewed removed

There should also have been a commit notification for d5651a0d0eebdc144db53425ee461e186319e5fd/trunk; not sure why there wasn't.

comment:10 Changed at 2014-02-24T20:51:31Z by daira

BTW zooko, for future reference, please don't use quotes in branch names. (They confuse git's shell command completion.)

comment:11 follow-up: Changed at 2014-04-15T14:56:31Z by warner

BTW, looking back at it, I don't believe the os.urandom is necessary at all. hash(X) == hash(Y) is sufficient, as long as the attacker only gets to submit "X" and not hash(X). To learn the first byte of hash(Y), they must create 256 Xs (where each one has a hash(X) that begins with a different value), at a cost of about 256 trials. Then they can do the usual timing attack with these 256 strings. But, once they've learned the first byte of hash(Y), then to learn the second byte, they must build a new set of 256 Xs (where they care about both the first and second bytes) at a cost of 256^2 trials. This gets exponentially worse as they try to test more bits, because they can't cheaply control the output of hash(Y).

Of course these days I'd use HKDF(X) instead of SHA256(X), or maybe HMAC or SHA256d.

I believe there's a different construct in which the random value is important, but not hash-vs-hash.

comment:12 in reply to: ↑ 11 Changed at 2014-04-15T15:02:08Z by zooko

Replying to warner:

BTW, looking back at it, I don't believe the os.urandom is necessary at all. hash(X) == hash(Y) is sufficient, as long as the attacker only gets to submit "X" and not hash(X).

That's funny, Brian! Because when you first invented this, I suggested hash(X) == hash(Y) instead, and you objected that you weren't entirely sure that was safe, and I later decided that you were right!

The thing is, the computation of hash(X) (where X is the secret) might leak information about X!

Although I guess you could always just compute that one time at process-start-up and store the value of hash(X) and use that. Okay, I'm convinced that would be safe. ☺

Last edited at 2014-04-15T15:02:32Z by zooko (previous) (diff)

comment:13 Changed at 2014-04-28T18:19:02Z by warner

That *is* funny. Yeah, I remember thinking that I didn't have time to analyze it properly, and being freaked out that it's easy to get the first few bytes of the target, so a randomized hash would be the most conservative approach.

I like your hash-it-once-and-store-it approach. For our purposes, I guess that'd mean storing H(write-enabler) instead of write-enabler, so the potentially-leaky hash occurs at mutable-share creation time, not subsequent access time.

Note: See TracTickets for help on using tickets.