summaryrefslogtreecommitdiff
path: root/crypt_win32.h
diff options
context:
space:
mode:
authorStefan Esser2012-01-11 20:15:17 +0100
committerStefan Esser2012-01-11 20:15:17 +0100
commit31c5db0ca4d1690bc161b01243a0a2ae193f6246 (patch)
tree81395851f40bcae020e658be2f96b777a5665f79 /crypt_win32.h
parente602fd738f066e0abf9fdf8b5dbb373b8daee40b (diff)
Removed files for crypt support
Diffstat (limited to 'crypt_win32.h')
-rw-r--r--crypt_win32.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/crypt_win32.h b/crypt_win32.h
deleted file mode 100644
index 9dd5ffa..0000000
--- a/crypt_win32.h
+++ /dev/null
@@ -1,60 +0,0 @@
1/*
2 +----------------------------------------------------------------------+
3 | PHP Version 5 |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 1997-2006 The PHP Group |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Author: |
16 +----------------------------------------------------------------------+
17 */
18
19/* $Id: crypt_win32.h,v 1.1.1.1 2007-11-28 01:15:35 sesser Exp $ */
20
21/* This code is distributed under the PHP license with permission from
22 the author Jochen Obalek <jochen.obalek@bigfoot.de> */
23
24/* encrypt.h - API to 56 bit DES encryption via calls
25 encrypt(3), setkey(3) and crypt(3)
26 Copyright (C) 1991 Jochen Obalek
27
28 This program is free software; you can redistribute it and/or modify
29 it under the terms of the GNU General Public License as published by
30 the Free Software Foundation; either version 2, or (at your option)
31 any later version.
32
33 This program is distributed in the hope that it will be useful,
34 but WITHOUT ANY WARRANTY; without even the implied warranty of
35 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36 GNU General Public License for more details.
37
38 You should have received a copy of the GNU General Public License
39 along with this program; if not, write to the Free Software
40 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
41
42#ifndef _ENCRYPT_H_
43#define _ENCRYPT_H_
44
45#ifdef __cplusplus
46extern "C"
47{
48#endif
49
50#include <_ansi.h>
51
52void _EXFUN(encrypt, (char *block, int edflag));
53void _EXFUN(setkey, (char *key));
54char * _EXFUN(crypt, (const char *key, const char *salt));
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif /* _ENCRYPT_H_ */