home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Programming / Python / Source / Modules / protos / md5module.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-25  |  407 b   |  8 lines

  1. static md5object *newmd5object ( void );
  2. static void md5_dealloc ( md5object *md5p );
  3. static PyObject *md5_update ( md5object *self , PyObject *args );
  4. static PyObject *md5_digest ( md5object *self , PyObject *args );
  5. static PyObject *md5_copy ( md5object *self , PyObject *args );
  6. static PyObject *md5_getattr ( md5object *self , char *name );
  7. static PyObject *MD5_new ( PyObject *self , PyObject *args );
  8.