![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
sci.crypt archiveRe: advice sought on key/data histogram analysis of rijndael/128 and serpent
From: lkcl <lkcl@lkcl.net>
Date: Mon Oct 17 2005 - 14:55:44 CEST
yep: i'm doing this, instead:
analyse_data(input, keybit, databit)
for i = 1 to 4 (indexing test data)
output = aes_encrypt(key, data)
test_data[i] = output /* chain the 4 encrypts together */
deviation = deviation_from_average_num_bits(test_data)
return 0
that's better.
will let you know what the output looks like...
|