Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Interfacing Python crypto library (http://www.velocityreviews.com/forums/t332138-interfacing-python-crypto-library.html)

Gandalf 06-15-2004 11:37 AM

Interfacing Python crypto library
 

Hi All!

I have an interesting problem here. I have written a Delphi program that
should connect to a server written in Python. I'm using a package called
DCP for encryption in Delphi and the well known pycrypto library in Python.

Delphi lib: {* DCPcrypt v2.0 written by David Barton
(crypto@cityinthesky.co.uk) **********}
Python lib: http://sourceforge.net/projects/pycrypto

For example, the SHA1 algorithm of DCPCrypt and Python seems to be
binary compatible. I want to use a symmetric cipher in CFB (8 bit) mode.
Using the same key, cipher type (Blowfish) and the same plaintext, these
libraries return different ciphertext values. Is there a way to make
them binary compatible? I do not insist on these two libraries. If
somebody can tell me two libraries that can work together with Delphi
and Python that will be perfect. I would be satisfied with a stand-alone
cipher too. The main point here is that my Delphi program will be a
native windows application. I do not want to install Python and I do not
want to use Python4Delphi on the client machines. Any ideas welcome.

Best,

Laszlo Nagy







All times are GMT. The time now is 12:49 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57