Berkeley CSUA MOTD:Entry 22173
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/07/08 [General] UID:1000 Activity:popular
7/8     

2001/8/19 [Computer/Theory, Uncategorized/Spanish] UID:22173 Activity:nil
8/20    I'm having a hard time figuring out some of the math behind
        diffe-hellman. The "key", pardon the pun, to the security of
        dh seems to be is that calculating g**(x*y) mod n is hard
        for an attacker.  Say x and y are small, less than 1024,
        couldn't an attacker just precompute all possible K (and K')
        based on n and g and then do a table lookup based on the X
        and Y values that are exchanged to get K (or K')?
        It seems to me that you need to make x and y quite large to
        have any sort of confidence that K and K' are secure. BUT,
        a large x and y means the compute time per key exchange is
        exteremely long. What are commonly used upper bounds on x
        and y?
        Sorry, if my questions are exteremely simple, I don't have
        a good handle on this material yet.
2025/07/08 [General] UID:1000 Activity:popular
7/8     

You may also be interested in these entries...
2012/8/30-11/7 [Computer/SW/Apps, Computer/SW/Unix] UID:54470 Activity:nil
8/30    Is wall just dead? The wallall command dies for me, muttering
        something about /var/wall/ttys not existing.
        \_ its seen a great drop in usage, though it seems mostly functional.
            -ERic
        \_ Couldn't open wall log!: Bad file descriptor
           Could not open wall subscription directory /var/wall/ttys: No such file or directory
	...
2011/11/20-2012/2/6 [Computer/Companies/Apple, Computer/SW/Unix] UID:54237 Activity:nil
11/20   Are there tools that can justify a chunk of plain ASCII text by
        replacing words with words of similar meaning and inserting/removing
        commas into the text?  I received a 40-line plain text mail where
        all the lines are justified on left and right.  Every word and comma
        is followed by only one space, and every period is followed by two
        spaces.  The guy is my kid's karate instructor which I don't think is
	...
2011/10/26-12/6 [Computer/SW/Unix] UID:54202 Activity:nil
10/24  What's an easy way to see if say column 3 of a file matches a list of
       expressions in a file? Basically I want to combine "grep -f <file>"
       to store the patterns and awk's $3 ~ /(AAA|BBB|CCC)/ ... I realize
       I can do this with "egrep -f " and use regexp instead of strings, but
       was wondering if there was some magic way to do this.
       \_ UNIX has no magic. Make a shell script to produce the ask or egrep
	...