Search the web
Sign In
New User? Sign Up
LibTom
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 20 - 49 of 2599   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20
I've fixed several things in both LTM/LTC. In LTC I fixed a bug in rsa_exptmod where if you threw a random "key type" at it it would always just use the "d"...
Tom St Denis
tomstdenis
Offline Send Email
Nov 7, 2003
1:20 pm
21
Hi Tom Before you release next LTM you might want to fix these two small warnings that bcb 5.51 gave me: Warning W8004...
henrik_goldman@...
Send Email
Nov 7, 2003
1:53 pm
22
... 64: 'str' is assigned a value that is never used in function mp_toradix Fixed this one. It was the *str++ = '\0'; NULL [or NIL as you may prefer :-)] byte...
Tom St Denis
tomstdenis
Offline Send Email
Nov 7, 2003
1:59 pm
23
Greg being the ultra-nice person he is has been plugging the LTM book around. Addison-Wesley turned the book down [too good for them I guess... ;-)] and...
Tom St Denis
tomstdenis
Offline Send Email
Nov 12, 2003
1:51 pm
24
... Greg being the ultra-nice person he is has been ... Sorry, but: what book are you talking about ?? Axelle. ...
Axelle Apvrille
axelle_apvrille
Offline Send Email
Nov 12, 2003
4:27 pm
25
... http://book.libtomcrypt.org Nuff Said. Tom...
Tom St Denis
tomstdenis
Offline Send Email
Nov 12, 2003
4:44 pm
26
I made a Cygwin makefile that will make a generic [no cygwin required to use the DLL] DLL from LibTomMath. In theory you could make an import lib and then use...
Tom St Denis
tomstdenis
Offline Send Email
Nov 28, 2003
4:28 am
27
... required ... fine. ... which ... Hehehe, yeah LTC as a DLL is 222KB... it works great and MSVC can see the symbols in the dll [just don't know how to make...
Tom St Denis
tomstdenis
Offline Send Email
Nov 28, 2003
4:51 pm
28
Hmm addition... oh hi people. Just writing to say that I have added additional functions to ... oh ... anyways I updated the prime gen code in both LTC/LTM to...
Tom St Denis
tomstdenis
Offline Send Email
Dec 1, 2003
1:23 pm
29
Hi, I have been using (a derivative of) rsa_make_key to create an RSA keypair. When I attempted to use the key with another piece of software I discovered that...
Trevor Davel
TrevorD@...
Send Email
Dec 3, 2003
12:36 am
30
Regarding the primes of being one bit longer the point was when you say "I have a k-bit prime" it should be a prime larger than 2^k not 2^ {k-1} as in the case...
Tom St Denis
tomstdenis
Offline Send Email
Dec 3, 2003
1:06 am
31
NIST released the specs for SHA-224. I added it. And you guys can't have it. Nyah Nyah....
Tom St Denis
tomstdenis
Offline Send Email
Dec 3, 2003
12:33 pm
32
Ok, I went a bit mad over the last couple of weeks. If you ever watch a cartoon called Invader Zim beware! So I have exams this week [one today in 24 mins]....
Tom St Denis
tomstdenis
Offline Send Email
Dec 6, 2003
2:42 pm
33
I sped up da hash code by making it able to compress data from source buffers. So if there are no bytes in the state and you pass it a buffer >= the block...
Tom St Denis
tomstdenis
Offline Send Email
Dec 7, 2003
2:22 pm
34
You mean that if I assemble a packet, encrypt it, call SHA-1 on it, and append the hash, that the packet buffer will have been altered? I don't consider this...
Greg Rose
ggr@...
Send Email
Dec 7, 2003
4:55 pm
35
... and ... don't ... certainly ... Yup. Let me explain using SHA-1 as an example. If I give sha1_process() K bytes it will [using the old code] add those...
Tom St Denis
tomstdenis
Offline Send Email
Dec 7, 2003
5:30 pm
36
For the worried....tv_gen emits the same hash_tv.txt file with the new SHA-1 code as before [it tests messages from 0 to 128 bytes long, double the block...
Tom St Denis
tomstdenis
Offline Send Email
Dec 7, 2003
6:27 pm
37
... Yeah, gotcha. You're stll going to end up copying it once (to do byte ordering stuff and expand) but not twice. Good move. Greg. Greg Rose...
Greg Rose
ggr@...
Send Email
Dec 7, 2003
11:23 pm
38
... copying ... byte ... True dat. On the Athlon it gets ya 1 cycle/byte. But I imagine on things like an ARM where there is often no cache the...
Tom St Denis
tomstdenis
Offline Send Email
Dec 8, 2003
12:31 am
39
Fishing around I found a Crypto'95 paper on fast ECC. It has the "almost inverse" algo. I want to try it out. The goal here though will be to cut down...
Tom St Denis
tomstdenis
Offline Send Email
Dec 9, 2003
5:33 am
40
woohoo. I've started the new manual. So far just the intro stuff :- ). Obviously it will be a work in progress... I still have two pending changes I'd like...
Tom St Denis
tomstdenis
Offline Send Email
Dec 12, 2003
7:51 pm
41
lucky #17 is Skipjack. Conforms to TV from NIST just fine. Here are some timings for y'all [btw the new x86_prof program sorts the output]. So my lame table...
Tom St Denis
tomstdenis
Offline Send Email
Dec 16, 2003
3:32 am
42
Matt Johnson found a bug in the blowfish.c code. I think what it was was that I meant to add the code to Twofish and I added it to blowfish by mistake... The...
tomstdenis@...
tomstdenis
Offline Send Email
Dec 16, 2003
7:45 pm
43
LibTomCrypt now has OMAC1 support for 64 and 128 bit ciphers [see: http://crypt.cis.ibaraki.ac.jp/omac/omac.html] which conforms to the AES test vector given. ...
tomstdenis@...
tomstdenis
Offline Send Email
Dec 17, 2003
3:12 am
44
In all of the hashes if you mess up the "curlen" field you can buffer overflow the hash done and process functions. I can't see a way an attacker can exploit...
tomstdenis@...
tomstdenis
Offline Send Email
Dec 17, 2003
3:18 pm
45
I've just added DSA to the list of PK that LTC supports. I still have to write key export/import routines but the sign/verify works already. A 160/512 key can...
Tom St Denis
tomstdenis
Offline Send Email
Dec 18, 2003
2:24 pm
46
in fast_mp_invmod() [which you wouldn't normally call yourself] I mistakenly made the input condition test wrong. So you can pass it values for which it will...
Tom St Denis
tomstdenis
Offline Send Email
Dec 20, 2003
1:03 am
47
Anyone want to share comments on the recent madness here or do you guys have "lives" that don't involve coding during x-mas break? [for shame!] Anyone care...
Tom St Denis
tomstdenis
Offline Send Email
Dec 22, 2003
3:16 am
48
Hi, No, you're not wasting your time, but as far as I am concerned I have moved back to France, and in the middle of an unpacking procedure, with a very slow ...
Axelle Apvrille
axelle_apvrille
Offline Send Email
Dec 22, 2003
11:05 am
49
I finished all of the changes I want for this release cycle. I've done the majority of my SQA and I'm still testing. About this time I test the makefiles...
Tom St Denis
tomstdenis
Offline Send Email
Dec 23, 2003
3:47 pm
Messages 20 - 49 of 2599   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help