File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -426,15 +426,12 @@ Note how the number of bytes needed is dependent on the number of characters in
426426 - You don't need random strings of length L.
427427 - String length is a by-product, not a goal.
428428 - You need unique strings.
429- - Uniqueness is too onerous.
430- - You can't afford the overhead of unique strings.
431- - You'll do fine with probabilistically unique strings.
432- - Probabilistic uniqueness involves risk.
433- - Risk is measured in the sense of * "1 in __ n__ chance of generating a repeat"*
434- - Probabilistic uniqueness requires measured randomness.
429+ - Uniqueness is too onerous. You'll do fine with probabilistically unique strings.
430+ - Probabilistic uniqueness involves measured risk.
431+ - Risk is measured as * "1 in __ n__ chance of generating a repeat"*
435432 - Bits of entropy gives you that measure.
436- - You need to a total of ** _ N_ ** strings to have a risk ** _ 1/n_ ** of repeat.
437- - The characters used is arbitrary.
433+ - You need to a total of ** _ N_ ** strings with a risk ** _ 1/n_ ** of repeat.
434+ - The characters are arbitrary.
438435 - You need ` entropy-string ` .
439436
440437``` js
You can’t perform that action at this time.
0 commit comments