|
|
Up |
|
|
  |
Author: UnruhUnruh
Date: Nov 24, 2006 20:58
>Unruh schreef:
>> Again, you take on the mantle of net cop with allacrity.
>> If there really were net cops you would find yourself with tickets far more
>> than most posters. Another news rule is that you remain polite with people
>> and that if someone does something you do not like, you exhibit tolerance
>> of that. Furtehrmore, the newer the poster, the more tolerance you exhibit. But that
>> is a rule you do not like, so you ignore it. With your example, why should
>> anyone follow any rules at all, since your key rule seems to be that your
>> own personal preferences take precedent over anything else.
>OK I will react.
>First I read this group every day, but usually first the 'headers'
>(subjects),
>and if I think the subject is interesting _to_me_ I will follow it.
>Because of this, you sometimes mis discussions about things.
>I just checked with google (posting from that now) and could not find a
>reference to that
>paper here.
|
| Show full article (1.92Kb) |
|
| |
no comments
|
|
  |
Author: Mike McNallyMike McNally
Date: Nov 24, 2006 19:33
Hello all,
In conjunction to reading Applied Cryptography 2nd Ed., I'm also using Cryptool as a
learning aid. In learning modern encryption algorithms I figured I'd start with the
DES, my logic being that it will give me a good foundation for learning the rest of
the algorithms.
However, I do have a question about the "circular shift" of the key after it has been
reduced to 48 bits and then split into two 28 bit halves.
Cryptool has some animated illustrations of some of the classic ciphers, and also for
DES.
This is what it shows for the first 'R' and 'L' half of the 28 bits before and after
the left circular shift, on the first round of the 16, which would make it a 1 bit
shift.
(I have aligned the shift for simplicity)
For the 'R' half:
1 0 1 1 1 1 1
1 0 0 1 1 0 0
0 1 1 1 1 0 0
1 1 1 1 0 0 0
|
| Show full article (2.28Kb) |
|
| |
4 Comments |
|
  |
Author: David EatherDavid Eather
Date: Nov 24, 2006 12:10
In many ways I still see myself as an outsider so I see things perhaps
in a slightly different way.
I would like to thank sci.crypt for an educational year over a goodly
range of topics. It is an amazing gift to the public that professors,
doctors and genuine experts give their time to deal with the "small
matters" raised by non-experts.
I also thank Rodger Schlafly who puts out his crypto mini-faq every
month but rarely gets thanked for his efforts. And JS, DG, BU and JP
(who seems to be no more) - even if I disagreed with you in an OT
thread, I respected your intellect and you did change me.
Merry Christmas Sci.crypt and best wishes for the new year
|
| |
|
1 Comment |
|
  |
Author: David EatherDavid Eather
Date: Nov 24, 2006 12:09
In many ways I still see myself as an outsider so I see things perhaps
in a slightly different way.
I would like to thank sci.crypt for an educational year over a goodly
range of topics. It is an amazing gift to the public that professors,
doctors and genuine experts give their time to deal with the "small
matters" raised by non-experts.
I also thank Rodger Schlafly who puts out his crypto mini-faq every
monthly but rarely gets thanked for his efforts. And JS, DG, BU and JP
(who seems to be no more) - even if I disagreed with you in an OT
thread, I respected your intellect.
Merry Christmas Sci.crypt and best wishes for the new year
|
| |
|
2 Comments |
|
  |
Author: UnruhUnruh
Date: Nov 24, 2006 10:27
"Tom St Denis" gmail.com> writes:
>Unruh wrote:
>>>Not *trying* to be a netcop but if you guys aren't even going to read
>>
>> No, you do it with ease, you do not have to try.
>Well it's no secret that you support re-news.
>If we let everyone repost shit on a weekly basis what would be the
>point of archiving any of this?
A lot more than the point of archiving this whole discussion, or most of
the discussions on netnews.
>It's a simple trick. Read the group for a while, and *then* start
>posting. It'd be different if they were months apart but ...
|
| Show full article (1.23Kb) |
|
1 Comment |
|
  |
Author: UnruhUnruh
Date: Nov 24, 2006 10:21
>In article ,
>Unruh wrote:
>>"gen_vlsi" gmail.com> writes:
>>
>>>Hi ,
>>
>>> Can anyone give me a comparison between MD5 and SHA. How do the
>>>algorithms process data, whether it is in big endian format or little
>>
>>THey are defined independnet of the endianness of the processor.
>>They process data very similarly.
>I beg your pardon? They most certainly are
>dependent on the data format. They have to take
>input as a byte-stream (actually a bit stream if
>you want to get technical) and turn it into 32-bit
>lumps for the algorithms to work on.
>Rivest used little-endian for MD5, but the NSA
>reversed that to be big-endian for the SHA family.
|
| Show full article (1.44Kb) |
|
no comments
|
|
  |
|
|
  |
Author: Greg RoseGreg Rose
Date: Nov 24, 2006 09:52
In article ,
Unruh wrote:
>"gen_vlsi" gmail.com> writes:
>
>>Hi ,
>
>> Can anyone give me a comparison between MD5 and SHA. How do the
>>algorithms process data, whether it is in big endian format or little
>
>THey are defined independnet of the endianness of the processor.
>They process data very similarly.
I beg your pardon? They most certainly are
dependent on the data format. They have to take
input as a byte-stream (actually a bit stream if
you want to get technical) and turn it into 32-bit
lumps for the algorithms to work on.
Rivest used little-endian for MD5, but the NSA
reversed that to be big-endian for the SHA family.
|
| Show full article (1.00Kb) |
|
no comments
|
|
  |
Author: yawnmothyawnmoth
Date: Nov 24, 2006 08:35
In programming, a serialized object is one that has been turned into a
string - a string that can be saved in a database, in a *.txt file, or
whatever. Is ASN.1 basically just a serialization technique?
Also, wikipedia.org provides an example of a ASN.1 using DER:
http://en.wikipedia.org/wiki/Asn.1#Example_encoded_in_DER
The first byte represents SEQUENCE and the second byte represents the
length of everything else. How does at ASN.1 decoder know that just
one byte is being used? If I had 256 bytes of data, the length would
be two bytes (0x01, 0x00). How would an ASN.1 decoder know this?
Section 8.1.3 of
< http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf>
suggests the length field ends when a bytes "first" digit is a 0 and
that only the last seven bits are actually used to store the number.
Does this mean that 256 would be represented as 1000 0010 0000 0000 =
0x82, 0x00? (I assume the most significant bit comes first)
|
| Show full article (1.51Kb) |
|
8 Comments |
|
  |
|
|
  |
Author: UnruhUnruh
Date: Nov 24, 2006 08:25
"Tom St Denis" gmail.com> writes:
>Jan Panteltje wrote:
>I believe we had a thread about this too ... [and thoroughly destroyed
>the importance of this paper too].
>Not *trying* to be a netcop but if you guys aren't even going to read
No, you do it with ease, you do not have to try.
>sci.crypt regularly ... you might want to invest in groups.google.com
>skills so you can at least check if the paper was mentioned (hint: a
>google search for that url will bring up the other thread)...
>Just trying to avoid going through the same debates over and over and
>over ....
In far fewer words than you used here you could have summarized that
discussion.
>Tom
|
| |
|
1 Comment |
|
|
|
|
|
|