> Yes, I am aware of that. The only thing I'm trying to do is to implement
> that alghoritm in python in order to give the hashed password back to some
> server that uses it.
As the previous poster hinted:
import sha
print sha.new("foobar").hexdigest()
Are you saying this doesn't suffice?
// m