2 * UFC-crypt: ultra fast crypt(3) implementation
4 * Copyright (C) 1991-1993,1996-1997,2007,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/>.
22 * @(#)crypt-entry.c 1.2 12/20/96
36 #include "ufc-crypt.h"
39 * Thanks to greg%wind@plains.NoDak.edu (Greg W. Wettstein)
45 #include "crypt-private.h"
47 /* Prototypes for local functions. */
48 #ifndef __GNU_LIBRARY__
49 void _ufc_clearmem (char *start
, int cnt
);
51 #define _ufc_clearmem(start, cnt) memset(start, 0, cnt)
53 extern char *__md5_crypt_r (const char *key
, const char *salt
, char *buffer
,
55 extern char *__md5_crypt (const char *key
, const char *salt
);
56 extern char *__sha256_crypt_r (const char *key
, const char *salt
,
57 char *buffer
, int buflen
);
58 extern char *__sha256_crypt (const char *key
, const char *salt
);
59 extern char *__sha512_crypt_r (const char *key
, const char *salt
,
60 char *buffer
, int buflen
);
61 extern char *__sha512_crypt (const char *key
, const char *salt
);
63 /* Define our magic string to mark salt for MD5 encryption
64 replacement. This is meant to be the same as for other MD5 based
65 encryption implementations. */
66 static const char md5_salt_prefix
[] = "$1$";
68 /* Magic string for SHA256 encryption. */
69 static const char sha256_salt_prefix
[] = "$5$";
71 /* Magic string for SHA512 encryption. */
72 static const char sha512_salt_prefix
[] = "$6$";
74 /* For use by the old, non-reentrant routines (crypt/encrypt/setkey) */
75 extern struct crypt_data _ufc_foobar
;
82 __crypt_r (key
, salt
, data
)
85 struct crypt_data
* __restrict data
;
89 ufc_long xx
= 25; /* to cope with GCC long long compiler bugs */
92 /* Try to find out whether we have to use MD5 encryption replacement. */
93 if (strncmp (md5_salt_prefix
, salt
, sizeof (md5_salt_prefix
) - 1) == 0)
94 return __md5_crypt_r (key
, salt
, (char *) data
,
95 sizeof (struct crypt_data
));
97 /* Try to find out whether we have to use SHA256 encryption replacement. */
98 if (strncmp (sha256_salt_prefix
, salt
, sizeof (sha256_salt_prefix
) - 1) == 0)
99 return __sha256_crypt_r (key
, salt
, (char *) data
,
100 sizeof (struct crypt_data
));
102 /* Try to find out whether we have to use SHA512 encryption replacement. */
103 if (strncmp (sha512_salt_prefix
, salt
, sizeof (sha512_salt_prefix
) - 1) == 0)
104 return __sha512_crypt_r (key
, salt
, (char *) data
,
105 sizeof (struct crypt_data
));
109 * Hack DES tables according to salt
111 _ufc_setup_salt_r (salt
, data
);
116 _ufc_clearmem (ktab
, (int) sizeof (ktab
));
117 (void) strncpy (ktab
, key
, 8);
118 _ufc_mk_keytab_r (ktab
, data
);
121 * Go for the 25 DES encryptions
123 _ufc_clearmem ((char*) res
, (int) sizeof (res
));
124 _ufc_doit_r (xx
, data
, &res
[0]);
127 * Do final permutations
129 _ufc_dofinalperm_r (res
, data
);
132 * And convert back to 6 bit ASCII
134 _ufc_output_conversion_r (res
[0], res
[1], salt
, data
);
135 return data
->crypt_3_buf
;
137 weak_alias (__crypt_r
, crypt_r
)
145 /* Try to find out whether we have to use MD5 encryption replacement. */
146 if (strncmp (md5_salt_prefix
, salt
, sizeof (md5_salt_prefix
) - 1) == 0)
147 return __md5_crypt (key
, salt
);
149 /* Try to find out whether we have to use SHA256 encryption replacement. */
150 if (strncmp (sha256_salt_prefix
, salt
, sizeof (sha256_salt_prefix
) - 1) == 0)
151 return __sha256_crypt (key
, salt
);
153 /* Try to find out whether we have to use SHA512 encryption replacement. */
154 if (strncmp (sha512_salt_prefix
, salt
, sizeof (sha512_salt_prefix
) - 1) == 0)
155 return __sha512_crypt (key
, salt
);
158 return __crypt_r (key
, salt
, &_ufc_foobar
);
163 * To make fcrypt users happy.
164 * They don't need to call init_des.
167 weak_alias (crypt
, fcrypt
)
174 return crypt (key
, salt
);