summaryrefslogtreecommitdiff
path: root/static/v10/man1/newcrypt.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man1/newcrypt.1
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man1/newcrypt.1')
-rw-r--r--static/v10/man1/newcrypt.165
1 files changed, 0 insertions, 65 deletions
diff --git a/static/v10/man1/newcrypt.1 b/static/v10/man1/newcrypt.1
deleted file mode 100644
index 4fe22985..00000000
--- a/static/v10/man1/newcrypt.1
+++ /dev/null
@@ -1,65 +0,0 @@
-.TH ENCRYPT 1
-.SH NAME
-encrypt, decrypt \- encrypt or decrypt a message or file
-.SH SYNOPSIS
-.B encrypt
-[
-.B \-p
-]
-[ password ]
-.br
-.B decrypt
-[
-.B \-p
-]
-[ password ]
-.SH DESCRIPTION
-.I Encrypt
-(
-.I decrypt
-)
-reads from the standard input and writes
-on the standard output.
-The
-.I password
-is a key, up to 127 characters in length, which selects a particular transformation.
-If no
-.I password
-is given,
-.I encrypt
-demands a key from the terminal (without echoing what the user types).
-If the wrong key is given to decrypt, it will usually exit without
-writing on standard output.
-.PP
-If the
-.B \-p
-option is specified, the ciphertext will be encoded into printing
-characters only; suitable for sending through mail.
-In this mode,
-.B decrypt
-ignores any lines that do not have a special prefix (added by
-.B encrypt
-),
-so messages received in the mail can be read without having to edit
-out headers.
-.PP
-Encryption takes place in three layers. The first addresses traffic
-analysis threats by hiding the size of the message and insuring that
-if the same message is send repeatedly with the same
-.I password
-the ciphertext will be entirely different each time.
-The second layer is the proposed Data Encryption Standard (DES) used
-in Cipher Block Chaining (CBC) mode. Finally, a key-dependent character
-transposition is applied to the ciphertext which impedes the
-assembly of corresponding pairs of DES blocks under a known-plaintext attack.
-.PP
-The user is encouraged to use a lengthy password. A short sequence of
-words chosen at random from a dictionary and committed to memory is
-a good plan.
-.SH FILES
-/dev/tty for typed key
-.SH AUTHOR
-D.P.Mitchell
-.SH BUGS
-This encryption program is not provably secure, and the author gives no
-guarantee that it cannot be broken.