Re: [Ironpython-users] using IronPython with pycrypto

2014-11-05 Thread Slide
That was my feeling as well, just wanted to clarify. I've been looking at IronClad, but the build setup is odd and I haven't had much time. On Wed Nov 05 2014 at 5:43:48 AM Jeff Hardy wrote: > On Mon, Nov 3, 2014 at 3:20 PM, Slide wrote: > > This brings up an interesting question. How much of a

Re: [Ironpython-users] using IronPython with pycrypto

2014-11-05 Thread Jeff Hardy
On Mon, Nov 3, 2014 at 3:20 PM, Slide wrote: > This brings up an interesting question. How much of a pure .NET > implementation do we want to keep in IronPython? Do we want to try and pull > something like IronClad into IronPython to provide compatibility, or > implement the important modules in .

Re: [Ironpython-users] using IronPython with pycrypto

2014-11-03 Thread Slide
This brings up an interesting question. How much of a pure .NET implementation do we want to keep in IronPython? Do we want to try and pull something like IronClad into IronPython to provide compatibility, or implement the important modules in .NET? On Mon, Nov 3, 2014 at 5:12 AM, Jeff Hardy wrot

Re: [Ironpython-users] using IronPython with pycrypto

2014-11-03 Thread Markus Schaber
Hi, Jeff, Von: Jeff Hardy > Sorry for the late reply. You've encountered the biggest issue with > IronPython, which is that it can't load Python extensions that are written in > C. > > In this case, the _AES modules (_AES.so) is a C library that depends on > CPython's implementation. Unfortunatel

Re: [Ironpython-users] using IronPython with pycrypto

2014-11-03 Thread Jeff Hardy
Hi Baron, Sorry for the late reply. You've encountered the biggest issue with IronPython, which is that it can't load Python extensions that are written in C. In this case, the _AES modules (_AES.so) is a C library that depends on CPython's implementation. Unfortunately, if PyCrypto doesn't provid

[Ironpython-users] using IronPython with pycrypto

2014-10-30 Thread Baron Oldenburg
Hello! I'm attempting to import a module (KillerBee) in IronPython. I've encountered a couple of issues along the way, some of which I've been able to fix. I'm hoping the mailing list can help me out with what I haven't fixed. Here are the problems I've en