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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 196 - 226 of 2599   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
196
I am trying to initialize the prng, but it does not seem to like the way I am initializing everything. My code is as follows #include <mycrypt.h> int main() { ...
Steve van Treeck
vant0038@...
Send Email
May 2, 2004
10:57 pm
197
... way I ... appreciated. I Are you sure you are linking in the tomcrypt.lib library? If you're using a VS project just goto the "libraries" tab in the...
Tom St Denis
tomstdenis
Offline Send Email
May 2, 2004
11:15 pm
198
... Are you linking to libtomcrypt properly? You might also need the path to the include file set in the project as well.....
Daniel Richards
kyhwana109
Online Now Send Email
May 2, 2004
11:18 pm
199
Just getting into the summer-code-code-code mode... I've started another LTM satelite project [you'll see ;-)] and I've started PKCS #5 support [it's easy and...
Tom St Denis
tomstdenis
Offline Send Email
May 3, 2004
2:49 am
200
... order ... does this mean to pass a large number for e to rsa_make_key? in my code it currently looks like this: e is taken from yarrow and should be higher...
Stefan Heinsen
stefan.heinsen@...
Send Email
May 5, 2004
5:14 pm
201
Hi ! I'd like to use LibTomCrypt inside an AVR microcontroller (ATMega163). But I don't know how to copile LibTomCrypt for an embeded environment, and ...
Joseph S
sch_joseph
Offline Send Email
May 5, 2004
8:13 pm
202
... It's not likely to work as a whole. The AVR is a space limited 8-bit processor. LibTomCrypt [and most of my other libs] assume at the very least a 32-bit...
Tom St Denis
tomstdenis
Offline Send Email
May 5, 2004
9:05 pm
203
On Sunday I took the pent-up rage I had over the reviewer comments and wrote an entire new library. This one is based off of LibTomMath and provides multiple...
Tom St Denis
tomstdenis
Offline Send Email
May 5, 2004
9:06 pm
204
... Well, first I'd imagine you need to setup a cross-platform build environment, so you can compile ATMega163 binaries. Once you do that, you just need to...
Daniel Richards
kyhwana109
Online Now Send Email
May 5, 2004
10:07 pm
205
... I think you misunderstand the nature of public key cryptography. with the public key for user A (you) you can: 1. Encrypt a message *to* user A 2. Validate...
Dave Howe
daverhowe
Offline Send Email
May 6, 2004
9:48 am
207
... Using the amazing high school calculus abilities of my mind I figured it out ... I can find ln(x) for 0 < x <= 2 with the MacLaurin series. Then if x = m *...
Tom St Denis
tomstdenis
Offline Send Email
May 6, 2004
4:37 pm
208
... maybe. i don't want to use public key cryptography. i want to build a system where program A can send a message to program B, and only B should be able to...
Stefan Heinsen
stefan.heinsen@...
Send Email
May 6, 2004
7:31 pm
209
Stefan Heinsen wrote: [snip] ... Right, so just encrypt the message with a symmetric algorithm (How to get the key to the other party I leave as an exercise...
Daniel Richards
kyhwana109
Online Now Send Email
May 6, 2004
8:47 pm
210
... Hence, you need to use PKC - there isn't any other system that offers this signature validation. ... ok. ... Solution is not to let this happen :) one...
Dave Howe
daverhowe
Offline Send Email
May 7, 2004
9:53 am
211
I was going to release LTC 0.95 today but I decided to just get the PKCS #1 code done and over with. So far I've written an OAEP encoder [as well as the...
Tom St Denis
tomstdenis
Offline Send Email
May 10, 2004
3:48 am
212
I released v0.95 of LTC yesterday. Enjoy. Tom...
Tom St Denis
tomstdenis
Offline Send Email
May 13, 2004
6:52 pm
213
... Oh, just so you know, libtomcrypt compiles/tests fine with MS's free VC++ .net/2003 toolkit thing....
Daniel Richards
kyhwana109
Online Now Send Email
May 14, 2004
11:53 am
214
... Keen. thanks. To be honest I did all of 2 mins testing in Windows [bleh!] so I'm glad to hear it actually built :-) Tom...
Tom St Denis
tomstdenis
Offline Send Email
May 14, 2004
12:17 pm
215
I plan on factoring the cipher routines up and adding additional descriptors so that people who use things like OMAC, PMAC or CTR [which then includes the...
Tom St Denis
tomstdenis
Offline Send Email
May 14, 2004
9:47 pm
216
I just released a quick patch for the OAEP decoder that allows the user to distinguish between failures [buffer overflow, etc] and packet errors [e.g. not...
Tom St Denis
tomstdenis
Offline Send Email
May 15, 2004
5:37 pm
217
... Hmmm, beware. This is the exact functionality that enables the Bleichenbacher attack against web servers. Basically, the attack works by sending random...
Greg Rose
ggr@...
Send Email
May 15, 2004
10:15 pm
218
... works by ... decrypted ... the two ... think the ... That's why my procedure for errors is to disconnect ;-) Ala LibTomNet. The errors are for the server...
Tom St Denis
tomstdenis
Offline Send Email
May 15, 2004
10:53 pm
219
So far I've scrapped the LTC based RSA functions for encrypt/sign [import/export will be another matter]. I've written [but haven't tested] OAEP based RSA...
Tom St Denis
tomstdenis
Offline Send Email
May 20, 2004
10:48 pm
220
I found that when you specify a saltlen > 0 [using my new test harness application btw!!!] the PSS encoder makes an output larger than the modulus. Obviously...
Tom St Denis
tomstdenis
Offline Send Email
May 22, 2004
4:53 pm
221
I started my modding the ciphers by working on AES first...I decided against making more .C files and decided on a diff model. If you build the ciphers with...
Tom St Denis
tomstdenis
Offline Send Email
May 22, 2004
7:15 pm
222
I had planned on spending less time on LTC and more time on the new LTF and LTM text but recent PKCS bugs and rather lack of good RSA made me focus on LTC...
Tom St Denis
tomstdenis
Offline Send Email
May 24, 2004
7:10 pm
223
I'm finishing up the documentation changes required for this release then doing a final code review. I managed a short gig with Gracenote next week so I'll try...
Tom St Denis
tomstdenis
Offline Send Email
May 27, 2004
8:35 pm
224
You can fetch 0.96 from the website now ;-) I'm on contract this week [for what to me sounds like gobs of money] so I won't be doing any LTC work this week....
Tom St Denis
tomstdenis
Offline Send Email
May 31, 2004
3:00 am
225
I was expecting comments from at least J or Wayne about 0.96.... Oh speaking of which I've updated my C.V. http://libtomcrypt.org/cv.html Please note under...
Tom St Denis
tomstdenis
Offline Send Email
Jun 9, 2004
3:34 am
226
I've made a series of updates to the PKCS #1 code. First and most importantly I patched a buffer overrun in pkcs_1_v15_es_decode(). It can lead to DoS attacks...
Tom St Denis
tomstdenis
Offline Send Email
Jun 13, 2004
2:46 pm
Messages 196 - 226 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