view src/auth/mycrypt.h @ 8958:16c286aee307 HEAD

Implemented support for per-namespace quotas. Can be used with public namespaces.
author Timo Sirainen <tss@iki.fi>
date Thu, 16 Apr 2009 21:31:30 -0400
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef MYCRYPT_H
#define MYCRYPT_H

/* A simple wrapper to crypt(). Problem with it is that it requires
   _XOPEN_SOURCE define which breaks other things. */
char *mycrypt(const char *key, const char *salt);

#endif