xref: /f-stack/tools/libutil/login_crypt.c (revision 22ce4aff)
11eaf0ac3Slogwang /*-
2*22ce4affSfengbojiang  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3*22ce4affSfengbojiang  *
41eaf0ac3Slogwang  * Copyright (c) 2000 Brian Fundakowski Feldman
51eaf0ac3Slogwang  * All rights reserved.
61eaf0ac3Slogwang  *
71eaf0ac3Slogwang  * Redistribution and use in source and binary forms, with or without
81eaf0ac3Slogwang  * modification, are permitted provided that the following conditions
91eaf0ac3Slogwang  * are met:
101eaf0ac3Slogwang  * 1. Redistributions of source code must retain the above copyright
111eaf0ac3Slogwang  *    notice, this list of conditions and the following disclaimer.
121eaf0ac3Slogwang  * 2. Redistributions in binary form must reproduce the above copyright
131eaf0ac3Slogwang  *    notice, this list of conditions and the following disclaimer in the
141eaf0ac3Slogwang  *    documentation and/or other materials provided with the distribution.
151eaf0ac3Slogwang  *
161eaf0ac3Slogwang  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
171eaf0ac3Slogwang  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
181eaf0ac3Slogwang  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
191eaf0ac3Slogwang  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
201eaf0ac3Slogwang  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
211eaf0ac3Slogwang  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
221eaf0ac3Slogwang  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
231eaf0ac3Slogwang  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
241eaf0ac3Slogwang  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
251eaf0ac3Slogwang  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
261eaf0ac3Slogwang  * SUCH DAMAGE.
271eaf0ac3Slogwang  */
281eaf0ac3Slogwang 
291eaf0ac3Slogwang #include <sys/cdefs.h>
301eaf0ac3Slogwang __FBSDID("$FreeBSD$");
311eaf0ac3Slogwang 
321eaf0ac3Slogwang #include <sys/types.h>
331eaf0ac3Slogwang 
341eaf0ac3Slogwang #include <login_cap.h>
351eaf0ac3Slogwang #include <stdio.h>
361eaf0ac3Slogwang #include <stdlib.h>
371eaf0ac3Slogwang #include <unistd.h>
381eaf0ac3Slogwang 
391eaf0ac3Slogwang const char *
login_setcryptfmt(login_cap_t * lc,const char * def,const char * error)401eaf0ac3Slogwang login_setcryptfmt(login_cap_t *lc, const char *def, const char *error) {
411eaf0ac3Slogwang 	const char *cipher;
421eaf0ac3Slogwang 
431eaf0ac3Slogwang 	cipher = login_getcapstr(lc, "passwd_format", def, NULL);
441eaf0ac3Slogwang 	if (getenv("CRYPT_DEBUG") != NULL)
451eaf0ac3Slogwang 		fprintf(stderr, "login_setcryptfmt: "
461eaf0ac3Slogwang 		    "passwd_format = %s\n", cipher);
471eaf0ac3Slogwang 	if (cipher == NULL)
481eaf0ac3Slogwang 		return (error);
491eaf0ac3Slogwang 	if (!crypt_set_format(cipher))
501eaf0ac3Slogwang 		return (error);
511eaf0ac3Slogwang 	return (cipher);
521eaf0ac3Slogwang }
53