summaryrefslogtreecommitdiffstats
path: root/usr.bin/enigma
Commit message (Collapse)AuthorAgeFilesLines
* Handle NULL return from crypt(3). Mostly from DragonFlykevlo2012-02-221-1/+7
|
* Mark global functions and/or variables in enigma(1) static where possible.ed2011-11-061-9/+9
| | | | This allows compilers and static analyzers to more thorough analysis.
* mdoc: order prologue macros consistently by Dd/Dt/Osuqs2010-04-141-1/+1
| | | | | | | | Although groff_mdoc(7) gives another impression, this is the ordering most widely used and also required by mdocml/mandoc. Reviewed by: ru Approved by: philip, ed (mentors)
* Markup nits.ru2006-12-241-2/+2
|
* Fix 32-bit integer math on 64-bit processor. Just use int32_t(!) insteadjkim2006-07-251-10/+3
| | | | | | | of incorrect and machine-dependent integer math. Now we can encrypt a file on an i386 and decrypt it on an amd64, and vice versa. Submitted by: Andrew Heybey < ath at niksun dot com >
* - Remove MLINKS to nonexistant manpagesbrueffer2005-07-141-2/+2
| | | | | | | - Change some section numbers to match reality - For MLINKS to manpages from ports, mention which port installs them MFC after: 3 days
* Expand *n't contractions.ru2005-02-131-1/+1
|
* Mechanically kill hard sentence breaks.ru2004-07-021-5/+11
|
* Bump the .Dd value.joerg2004-05-141-7/+14
| | | | | | | Update xrefs to more contemporary items. Requested by: ru, green MFC after: 1 week
* When I wrote this man page more than 5 years ago, I simply didn'tjoerg2004-05-141-2/+4
| | | | | | | | | understand the true symmetric nature of Enigma, so my description of ``automatically detects that the input is encrypted'' was simply wrong. Replace that by a more accurate description of why feeding the ciphertext again into the engine will decrypt it. MFC after: 1 week
* Fixed style of DPADD and LDADD assignments as per style.Makefile(5).ru2004-02-051-2/+2
|
* Call crypt() directly instead of taking a detour through makekey.tjr2003-10-092-34/+7
|
* ANSIify function definitions.dwmalone2002-09-041-8/+4
| | | | | | | | | Add some constness to avoid some warnings. Remove use register keyword. Deal with missing/unneeded extern/prototypes. Some minor type changes/casts to avoid warnings. Reviewed by: md5
* Consistently use FBSDIDobrien2002-06-301-4/+2
|
* Use `The .Nm utility'charnier2002-04-191-2/+3
|
* Remove leaf node WARNS?=2 (that mainly I added). This shouldmarkm2002-02-081-1/+0
| | | | help the GCC3 transition and CURRENT in general.
* Fix the type of the NULL arg to execl()brian2001-07-091-5/+5
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* Silence -Wshadow and -Wmissing-prototypes; set WARNS=2.dd2001-06-252-13/+16
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Remove unwanted CFLAGS, and add a CVS id.eric2001-06-152-1/+5
|
* MAN[1-9] -> MAN.ru2001-03-271-1/+2
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Various man page cleanup:mpp1999-08-151-2/+2
| | | | | | | | | - Sort xrefs - Be consistent with section names as outlines in mdoc(7). - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexey M. Zelkin <phantom@cris.net>
* Some man page cleanup. Make the NAME and SYNOPSIS sections agree sompp1999-06-241-2/+3
| | | | | | that whatis(1) will produce the expected results. Pointed-out-by: Jesus Monroy <jesus.monroy@usa.net> in freebsd-doc
* Typo.billf1999-01-281-2/+2
| | | | | PR: docs/9752 Submitted by: horikawa@jp.FreeBSD.org
* Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).archie1998-12-061-0/+1
|
* Fix some of the more blatant bugs in the original code, provide ajoerg1998-10-303-33/+156
| | | | | | | | | | | BSD-able Makefile, add a man page (that also puts a bold warning about the weakness of the encryption), and implement the -k option for compatibility with other vendor's implementations. (Unlike those other vendors, we actually also document this option and its problems.) There are more violations of style(9) in it, like the not-use of getopt(3), but it's not worth the while fixing all of this.
* This is enigma, aka. crypt(1). It has suppsedly been taken fromjoerg1998-10-302-0/+182
Cryptbreakers Workbench. While arguably a rather weak encryption, it's in some use in the Internet still, and provided by a bunch of other Unix systesms, so we include it here for compatibility. Silently agreed by: core
OpenPOWER on IntegriCloud