Set up the data structures for vDSO in libc.a
[glibc.git] / crypt / crypt-private.h
blobb4bfa8b4acf84b7a839e5939acf621dfc55db9dc
1 /*
2 * UFC-crypt: ultra fast crypt(3) implementation
4 * Copyright (C) 1991-1993, 1996-1998, 2012 Free Software Foundation, Inc.
6 * The GNU C Library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * The GNU C Library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with the GNU C Library; if not, see
18 * <http://www.gnu.org/licenses/>.
20 * @(#)crypt-private.h 1.4 12/20/96
23 /* Prototypes for local functions in libcrypt.a. */
25 #ifndef CRYPT_PRIVATE_H
26 #define CRYPT_PRIVATE_H 1
28 #include <features.h>
30 /* crypt.c */
31 extern void _ufc_doit_r (ufc_long itr, struct crypt_data * __restrict __data,
32 ufc_long *res);
35 /* crypt_util.c */
36 extern void __init_des_r (struct crypt_data * __restrict __data);
37 extern void __init_des (void);
39 extern void _ufc_setup_salt_r (const char *s,
40 struct crypt_data * __restrict __data);
41 extern void _ufc_mk_keytab_r (const char *key,
42 struct crypt_data * __restrict __data);
43 extern void _ufc_dofinalperm_r (ufc_long *res,
44 struct crypt_data * __restrict __data);
45 extern void _ufc_output_conversion_r (ufc_long v1, ufc_long v2,
46 const char *salt,
47 struct crypt_data * __restrict __data);
49 extern void __setkey_r (const char *__key,
50 struct crypt_data * __restrict __data);
51 extern void __encrypt_r (char * __restrict __block, int __edflag,
52 struct crypt_data * __restrict __data);
54 /* crypt-entry.c */
55 extern char *__crypt_r (const char *__key, const char *__salt,
56 struct crypt_data * __restrict __data);
57 extern char *fcrypt (const char *key, const char *salt);
59 #endif /* crypt-private.h */