.\" $NetBSD: makekey.8,v 1.9 2002/01/15 02:23:28 wiz Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" 3. All advertising materials mentioning features or use of this software .\" must display the following acknowledgement: .\" This product includes software developed by the University of .\" California, Berkeley and its contributors. .\" 4. Neither the name of the University nor the names of its contributors .\" may be used to endorse or promote products derived from this software .\" without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" .\" from: @(#)makekey.8 8.2 (Berkeley) 12/11/93 .\" .Dd December 11, 1993 .Dt MAKEKEY 8 .Os .Sh NAME .Nm makekey .Nd make encrypted keys or passwords .Sh SYNOPSIS .Nm .Sh DESCRIPTION .Nm encrypts a key and salt which it reads from the standard input and writes the result to the standard output. The key is expected to be eight bytes; the salt is expected to be two bytes. See .Xr crypt 3 for more information on what characters the key and salt can contain and how the encrypted value is calculated. .Sh SEE ALSO .Xr login 1 , .Xr crypt 3 .Sh HISTORY A .Nm command appeared in .At v7 . l.jruoho 2011-01-02The unmatchedvarparens test actually generates a blank link as output,pgoyette so make sure we have a matching blank line in the "golden" output match file. 2010-12-31Correct a typo that creept in 4 weeks ago. This removes the 1 "Bogus Test"pgoyette currently being reported. 2010-12-03Add a new test for the latest variable expansion problem.christos - Cannot test because make test prints: .: Can't open /usr/share/atf/atf.header.subr - The shell script common code needs to be fixed to follow regular shell style. - variables are underquoted - uses `` instead of $() - does not use local for local variables, prefixes with undescore - needlessly uses braces for numeric and symbolic variables. - uses a fifo to grab output, and does not clean it up properly on error - should not exit with > 127 !!! 2010-11-07Adjusts tests after import of atf-0.12:jmmv - The use.fs property is gone. - Mark the tests/fs/t_create:attrs test as broken when using the default unprivileged-user:_atf setting. This probably deserves a fix somehow but I'm not sure at this point. 2010-07-13Get rid of static Atffiles and let bsd.test.mk generate them on the fly.jmmv 2010-07-10Do not use awk to generate the test program. Instead, replace it with somejmmv eval magic (which is less magic than the previous awk stuff). 2010-06-04atf-0.9 introduces an use.fs test-case property to allow tests to write tojmmv their work directory. The purpose is to be able to know which tests intend to touch the file system and to allow a minor optimization in atf-run. Define use.fs=true for all those tests requiring it. (This highlights that some tests currently require modifying the file system but conceptually they shouldn't be... which leaves room for further improvements/cleanups later :-) 2009-02-13Add the util tests developed as part of the atfify GSoC 2008 project.jmmv Initial done work by Lukasz Strzygowsky and reorganization of files done by me.