sci.crypt
  Home FAQ Contact Sign in
sci.crypt only
 
Advanced search
July 2008
motuwethfrsasuw
 123456 27
78910111213 28
14151617181920 29
21222324252627 30
28293031    31
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
sci.crypt Profile…
RELATED GROUPS

POPULAR GROUPS

 Up
  URGENT: Disk encryption "cold boot attacks" looks to be significant - Real attack shown.         


Author: fortune.bruce
Date: Jul 31, 2008 17:48

Princeton security researchers purport successful attacks against
Microsoft Bitlocker, TrueCrypt, and other mainline disk encryption
products.

There is a video at the following URL that shows an actual attack, and
it looks to be trivial:

http://news.cnet.com/8301-1009_3-10003167-83.html

If you have a laptop and use one of these type encryption solutions,
you probably need to eyeball this one.

Maybe some closer scrutiny will show a method to prevent the attack.
26 Comments
  Does ripemd-160 is secure?         


Author: Kless
Date: Jul 31, 2008 11:15

Is secure to use RIPEMD-160 hash function? I know that there are not
known atacks about that algorithm, but I don't know if today is really
secure to use a hash of 160 bits.

Or if would be best to use a hash of 256 bits as minimum (as SHA-256)?
--althought has been created by N S A--
7 Comments
  What's up with this SHA256 program?         


Author: Sal
Date: Jul 31, 2008 06:47

-- The hashes don't seem to match other SHA256 fingerprints
I've seen for identical inputs. Am I missing something?
10 Comments
  Calculating entropy for UTF-8         


Author: Kless
Date: Jul 31, 2008 03:01

I'm going to use 95 UTF-8 characters (that occupies 2 bytes each one),
and I want to calculate its entropy for 80 bits --I think that is the
minimum recommend by NIST--.

------------------------
95 latin-1 chars. = 190 bytes

80 / lg(190 by) = 10 by (= 5 UTF-8 chars.)
------------------------

Is it correct?
13 Comments
  Reversing of 32Bit Hash/Seedkey         


Author: friedo
Date: Jul 31, 2008 02:33

I have a 32Bit function which calculates some kind of hash using three
secret 32 bit values. The question is how to reverse this or is it
possible to reverse (as i don´t know if this function is based on
something cryptographic algo)?

In my example I defined three SECRET values and generated 60000
plain/crypt pairs as a test system.
Bruteforce attack tooks very long time so how can i reverse such an
algorithm to get SECRET values from generated plain/crypt examples?

here´s a c-example of the algorithm:

unsigned long keycalc(unsigned long myseed)
{
unsigned long sc1,sc2,sc3;
unsigned long hlp;
unsigned short i,j;

sc1 = SECRETVALUE1;
sc2 = SECRETVALUE2;
sc3 = SECRETVALUE3;
Show full article (1.03Kb)
11 Comments