On 03:21 am, donal.mcmul...@gmail.com wrote:
I'm interested in doing some FUSE stuff with Twisted, mostly to
prototype some ideas for profiling. Can anyone expand on Glyph's
comment [1]:
8< - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The Python FUSE bindings obscure the issue because
On Sun, Apr 4, 2010 at 4:21 AM, Donal McMullan wrote:
> I'm interested in doing some FUSE stuff with Twisted, mostly to
> prototype some ideas for profiling. Can anyone expand on Glyph's
> comment [1]:
I wrote some code for this a while ago. I don't remember anything
about it, but it might be a r
Hi all,
I use FilePasswordDB with a small smtp-server (a very small toy), but when
I use the hash function the authentication doesn't work.
Here few lines of code:
"""
def _hash(name, clearpsw, hashedpsw):
# a very simple hash function ?
return md5.md5(clearpsw).hexdigest()
# retur
On 4/4/10 5:41 PM, aleu...@inwind.it wrote:
> Hi all,
>I use FilePasswordDB with a small smtp-server (a very small toy), but when
> I use the hash function the authentication doesn't work.
>
> Here few lines of code:
> """
> def _hash(name, clearpsw, hashedpsw):
> # a very simple hash fun