sci.crypt
  Home FAQ Contact Sign in
sci.crypt only
 
Advanced search
December 2006
motuwethfrsasuw
    123 48
45678910 49
11121314151617 50
18192021222324 51
25262728293031 52
2006
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
sci.crypt Profile…
RELATED GROUPS

POPULAR GROUPS

 Up
  Re: Seen Tom St Denis latly?         


Author: JR
Date: Dec 14, 2006 23:14

I suggest that readers of this forum who are able to do it should help by
exposing the perpetrator.

JR

"David Wagner" taverner.cs.berkeley.edu> wrote in message
news:els961$ukn$1@agate.berkeley.edu...
> Simon Johnson wrote:
>>It is happening and sick bastards are phoning his house asking for the
>>stuff he's purported to be selling.
>>
>>Frankly, whoever is doing this is a really sick bastard and it is
>>totally unjustified.
>
> That's atrocious and disgusting. I second everything Jean-Luc Cooke
> and Simon Johnson wrote. Whoever is doing this to Tom St Denis, it's
> despicable. I hope that the perpetrators are caught. Best wishes to Tom
> St Denis; I hope he'll be able to weather this storm and re-join us soon.
3 Comments
  Re: Edible One-Time Pad books         


Author: Unruh
Date: Dec 14, 2006 22:16

admin@eatmychat.com writes:
>Ernest Hammingweight wrote:
>> admin@eatmychat.com wrote:
>>> Entropy = 7.952913 bits per byte.
>>
>> Kudos for thinking of such a cute promotional item. How did you
>> compute the entropy? Is it based on some knowlege of how the
>> atmosphere behaves or computed (somehow) from your samples?
>Thank you... the statistical analysis was performed on the final
>numbers using a program called "ent" by John Walker, available here:
Show full article (1.29Kb)
no comments
  Extending Goldwasser-Micali         


Author: Mike Amling
Date: Dec 14, 2006 15:25

Goldwasser-Micali public-key key generation picks two (large) primes
p and q, and an integer x such that x is not a square mod p (i.e., not a
quadratic residue) and not a square mod q. The public key is (x, N),
where N=p*q. The private key is (p, q).
A GM ciphertext is the value of (r**2)*(x**m) mod N, where r is
random and the message m is either 0 or 1.
The private key holder recovers m by determining whether the
ciphertext is a square mod p and a square mod q (It better be both or
neither.).
Show full article (2.20Kb)
2 Comments
  Re: Seen Tom St Denis latly?         


Author: David Wagner
Date: Dec 14, 2006 11:37

Simon Johnson wrote:
>It is happening and sick bastards are phoning his house asking for the
>stuff he's purported to be selling.
>
>Frankly, whoever is doing this is a really sick bastard and it is
>totally unjustified.

That's atrocious and disgusting. I second everything Jean-Luc Cooke
and Simon Johnson wrote. Whoever is doing this to Tom St Denis, it's
despicable. I hope that the perpetrators are caught. Best wishes to Tom
St Denis; I hope he'll be able to weather this storm and re-join us soon.
1 Comment
  Re: Seen Tom St Denis latly?         


Author: Simon Johnson
Date: Dec 14, 2006 09:10

clark wrote:
> On 13 Dec 2006 16:05:32 GMT, Jean-Luc Cooke engsoc.org>
> wrote:
>
>>I've been trying to get a hold of Tom by email and other electronic
>>means the past few days.
>>
>>Seems he's dropping...
Show full article (2.81Kb)
no comments
  Re: So, what is it about OpenSSL and sci.crypt?         


Author: Carlos Moreno
Date: Dec 14, 2006 06:45

Joseph Ashwood wrote:
> The problem is that OpenSSL has fallen out of favor with this group on the
> whole. If you want something faster, it's available, more robust, available,
> easier to program, available, no matter what you are looking for there are
> numerous options that are superior to OpenSSL.

Hmmm, curious --- I've somehow consistently have been drawn back to
OpenSSL as the "only" alternative; with LibTomCrypt (which I hear
about often enough), I get that ugly feeling that "ughh, but it's
in C; if I'm going to be tortured into using C, I might as well
stick to the ugly-but-ubiqutous OpenSSL" (that is, write my own
wrapper functions or classes and be done with it).

So, of course, I want C++, so what better than Crypto++??? Well,
it does not seem to work (read: compile) on any platform that I use;
frankly, I get from them the frustrating feeling that the library
only compiles with the latest version of Microsoft compilers on
Windows :-( (I know that this is not the case; this is another
instance of a "semi-comical exaggeration").
Show full article (1.76Kb)
2 Comments
  error correcting/detecting code question         


Author: Bart Vandewoestyne
Date: Dec 14, 2006 06:17

I have course notes on error detecting and correcting codes that
state the following two well known facts:

Fact 1:
"A block-code can detect s errors if and only if d >= s+1"

Fact 2:
"A block-code can correct t errors if and only if d >= 2t+1"

where d is the distance of the code.

Now a little bit further in these course notes, it is written:

"In general, a code can only detect errors or only correct errors
or a combination of both. The requirement for a code to be able
to detect s errors and at the same time correct t (<=s) errors is
that d>=s+t+1

Example:
Suppose we have a code with d=5. This code can...
... detect 4 errors and correct 0 errors.
OR ... detect 3 errors and correct 1 error.
OR ... detect 2 errors and correct 2 errors."
Show full article (1.37Kb)
3 Comments