DES in PDA

2002-05-21 Thread fawaz bokhari
Hi, I am developing my final year project and need some help regarding encryption in a prc file. I am developing an application on a pda using code warrior in which i want to implement DES or anyother encryption algorythm in my prc file. What i mean from this is that you enter text into a text f

Re: DES in PDA

2002-05-22 Thread Keith Monahan
be found via google. Good luck, Keith M - Original Message - From: "fawaz bokhari" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Wednesday, May 22, 2002 1:14 AM Subject: DES in PDA > Hi, > > I am developing my final ye

Re: DES in PDA

2002-05-22 Thread fawaz bokhari
found via > google. > > Good luck, > > Keith M > > - Original Message - > From: "fawaz bokhari" <[EMAIL PROTECTED]> > To: "Palm Developer Forum" > <[EMAIL PROTECTED]> > Sent: Wednesday, May 22, 2002 1:14 AM > S

Re: DES in PDA

2002-05-22 Thread Joe
--- fawaz bokhari <[EMAIL PROTECTED]> wrote: > > Actually I am a little bit confused about the sentence > from Keith M. "If I were you, I would probably hunt down > some source code although because of the memory > limitations, it may not be easy to port directly > (from windows source or unix)

Re: DES in PDA

2002-05-23 Thread Alex Muratov
Porting crypto algorithm from Win/UNIX C/C++ source code to PalmOS requires a little work (from my experience). Best regards, Alex. "Joe" <[EMAIL PROTECTED]> wrote in message news:86955@palm-dev-forum... > > --- fawaz bokhari <[EMAIL PROTECTED]> wrote: > > > > Actually I am a little bit confused

Re: DES in PDA

2002-05-23 Thread Stringer
>Subject: Re: DES in PDA >From: fawaz bokhari <[EMAIL PROTECTED]> >Date: Wed, 22 May 2002 20:36:30 -0700 (PDT) >Thanx for the replies. > >Actually I am a little bit confused about the sentence >from Keith M. "If I were you, I would probably hunt down >some

Re: DES in PDA

2002-05-23 Thread overcode+palm
On Thu, May 23, 2002 at 09:04:58AM -0400, Stringer wrote: > >Subject: Re: DES in PDA > >From: fawaz bokhari <[EMAIL PROTECTED]> > >Date: Wed, 22 May 2002 20:36:30 -0700 (PDT) > >Thanx for the replies. > > > >Actually I am a little bit confused about the s

Re: DES in PDA

2002-05-23 Thread Tom Frauenhofer
I've found that the trick to port these applications is to build your app in 4-byte int mode (instead of the default 2-byte int mode). I had to make another encryption library work, that's the trick I used, no code changes required. (And before anyone asks that code was owned by my employer a

Re: DES in PDA

2002-05-23 Thread Ben Combee
In article <87038@palm-dev-forum>, [EMAIL PROTECTED] says... > > I've found that the trick to port these applications is to build your app > in 4-byte int mode (instead of the default 2-byte int mode). I had to make > another encryption library work, that's the trick I used, no code changes >

Re: DES in PDA

2002-05-26 Thread Alan Ingleby
> My question is, can I implement DES or any other > algorythm in a prc file. If you just need *any* type of encryption, I would suggest an easier to implement (but weaker) algorithm, such as RC4. There are many examples of this simple algorithm on the web. Try ftp://ftp.ox.ac.uk/pub/crypto/mis

Re: DES in PDA

2002-07-01 Thread fawaz bokhari
Hi, I want to implement DES or anyother encryption algorythm in my web clipping application. The pages are generated dynamically. Can anyone tell me how can I achieve this thing. I mean, I have developed a prc file and by using INet library I am accessing a url located on the web server. After th