aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/enigma
Commit message (Collapse)AuthorAgeFilesLines
* mdoc: order prologue macros consistently by Dd/Dt/OsUlrich Spörlein2010-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) Notes: svn path=/head/; revision=206622
* Markup nits.Ruslan Ermilov2006-12-241-2/+2
| | | | Notes: svn path=/head/; revision=165528
* Fix 32-bit integer math on 64-bit processor. Just use int32_t(!) insteadJung-uk Kim2006-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 > Notes: svn path=/head/; revision=160681
* - Remove MLINKS to nonexistant manpagesChristian Brueffer2005-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 Notes: svn path=/head/; revision=148011
* Expand *n't contractions.Ruslan Ermilov2005-02-131-1/+1
| | | | Notes: svn path=/head/; revision=141846
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-5/+11
| | | | Notes: svn path=/head/; revision=131491
* Bump the .Dd value.Joerg Wunsch2004-05-141-7/+14
| | | | | | | | | | Update xrefs to more contemporary items. Requested by: ru, green MFC after: 1 week Notes: svn path=/head/; revision=129235
* When I wrote this man page more than 5 years ago, I simply didn'tJoerg Wunsch2004-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 Notes: svn path=/head/; revision=129234
* Fixed style of DPADD and LDADD assignments as per style.Makefile(5).Ruslan Ermilov2004-02-051-2/+2
| | | | Notes: svn path=/head/; revision=125503
* Call crypt() directly instead of taking a detour through makekey.Tim J. Robbins2003-10-092-34/+7
| | | | Notes: svn path=/head/; revision=120935
* ANSIify function definitions.David Malone2002-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 Notes: svn path=/head/; revision=102944
* Consistently use FBSDIDDavid E. O'Brien2002-06-301-4/+2
| | | | Notes: svn path=/head/; revision=99112
* Use `The .Nm utility'Philippe Charnier2002-04-191-2/+3
| | | | Notes: svn path=/head/; revision=95083
* Remove leaf node WARNS?=2 (that mainly I added). This shouldMark Murray2002-02-081-1/+0
| | | | | | | help the GCC3 transition and CURRENT in general. Notes: svn path=/head/; revision=90415
* Fix the type of the NULL arg to execl()Brian Somers2001-07-091-5/+5
| | | | | | | Idea from: Theo de Raadt <deraadt@openbsd.org> Notes: svn path=/head/; revision=79452
* Silence -Wshadow and -Wmissing-prototypes; set WARNS=2.Dima Dorfman2001-06-252-13/+16
| | | | | | | Submitted by: Mike Barcroft <mike@q9media.com> Notes: svn path=/head/; revision=78781
* Remove unwanted CFLAGS, and add a CVS id.Eric Melville2001-06-152-1/+5
| | | | Notes: svn path=/head/; revision=78310
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-1/+2
| | | | Notes: svn path=/head/; revision=74848
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Various man page cleanup:Mike Pritchard1999-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> Notes: svn path=/head/; revision=49823
* Some man page cleanup. Make the NAME and SYNOPSIS sections agree soMike Pritchard1999-06-241-2/+3
| | | | | | | | | that whatis(1) will produce the expected results. Pointed-out-by: Jesus Monroy <jesus.monroy@usa.net> in freebsd-doc Notes: svn path=/head/; revision=48168
* Typo.Bill Fumerola1999-01-281-2/+2
| | | | | | | | PR: docs/9752 Submitted by: horikawa@jp.FreeBSD.org Notes: svn path=/head/; revision=43354
* Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).Archie Cobbs1998-12-061-0/+1
| | | | Notes: svn path=/head/; revision=41568
* Fix some of the more blatant bugs in the original code, provide aJoerg Wunsch1998-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. Notes: svn path=/head/; revision=40769
* This is enigma, aka. crypt(1). It has suppsedly been taken fromJoerg Wunsch1998-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 Notes: svn path=/cvs2svn/branches/CBW/; revision=40767