1
#ifndef VMAILMGR__PWCRYPT__H__
2
#define VMAILMGR__PWCRYPT__H__
3
4
#include "mystring/mystring.h"
5
6
bool crypt_cmp(const mystring& pass, const mystring& crypt);
7
const char* pwcrypt(const mystring& pass);
8
9
#endif