Re: Step by step: Compiling extensions with MS Visual C++ Toolkit 2003 - msvccompiler-patch.txt (0/1)

2004-12-17 Thread wjb131
Having done steps 1 to 10, I tried building Numeric-23.6. And got the following error-msg: F:\install\Numeric-23.6>python setup.py build running build running build_py running build_ext building '_numpy' extension D:\Programme\Microsoft Visual C++ Toolkit 2003\bin\cl.exe /c /nologo /Ox /MD /W3 /GX

Re: Step by step: Compiling extensions with MS Visual C++ Toolkit 2003 - msvccompiler-patch.txt (0/1)

2004-12-22 Thread wjb131
... > d:\Python24\include\pyconfig.h(30) : fatal error C1083: Cannot open > include file > : 'io.h': No such file or directory > error: command '"D:\Programme\Microsoft Visual C++ Toolkit > 2003\bin\cl.exe"' fai > led with exit status 2 > > why? Under : HKEY_LOCAL_MACHINE\Software\Microsoft\Visual

Help wanted with md2 hash algorithm

2006-01-07 Thread wjb131
hi all, below you find my simple python version of MD2 algorithm as described in RFC1319 (http://rfc1319.x42.com/MD2). It produces correct results for strings shorter than 16 Bytes and wrong results for longer strings. I can't find what's wrong. Can anybody help? Regards Wolfgang

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > below you find my simple python version of MD2 algorithm > > as described in RFC1319 (http://rfc1319.x42.com/MD2). > > It produces correct results for strings shorter than 16 Bytes and wrong > > results for longer strings. > > Why do you want to u

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > I want to understand it, and -- therefor ;-) -- I want to implement it > > in pure Pyhton. > > OK. It should be pretty easy to implement. You should find the > official rfc at ietf.org. I remember there was some minor erratum in > the original v

Re: Help wanted with md2 hash algorithm

2006-01-09 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > I thought I had build a proper implementation in Python. The error you > > mention can be avoided by studying the C implementation in RFC 1319. > > BUT: Some of the test vectors failed. That's my problem ;-( > > And therefore I asked for help. > >

Re: Help wanted with md2 hash algorithm

2006-01-10 Thread wjb131
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > I thought I had build a proper implementation in Python. The error you > > mention can be avoided by studying the C implementation in RFC 1319. > > BUT: Some of the test vectors failed. That's my problem ;-( > > And therefore I asked for help. > >

Re: Help wanted with md2 hash algorithm

2006-01-11 Thread wjb131
Tom Anderson wrote: > On Sun, 8 Jan 2006, Tom Anderson wrote: > > > On Fri, 6 Jan 2006 [EMAIL PROTECTED] wrote: > > > >> below you find my simple python version of MD2 algorithm as described > >> in RFC1319 (http://rfc1319.x42.com/MD2). It produces correct results > >> for strings shorter than 16