home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xcrypt.h < prev    next >
C/C++ Source or Header  |  1998-01-12  |  941b  |  23 lines

  1. #ifndef __OOL_XCRYPT_H__
  2. #define __OOL_XCRYPT_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XCrypt                                */
  8. /*                       derived from: XObject                               */
  9. /*                        last update: 1/98                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13. #include "xobject.h"
  14. #include "xstring.h"
  15.  
  16. class XCrypt: public XObject
  17. {
  18.    public:
  19.       static XString Crypt16( const XString& data, const XString& key);
  20.       static XString BuildMD5Key( const XString& userData);
  21. };
  22.  
  23. #endif