summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorderaadt <>1996-11-01 03:45:28 +0000
committerderaadt <>1996-11-01 03:45:28 +0000
commit1f8d0b5a3bacff15ff3b1582bcd6f7476935c855 (patch)
tree67df3052219a4b088eac589d25c46d9b6a9a1ea6
parent05732d13c524f1acfe6b0dde681f0c8e134ed405 (diff)
downloadopenbsd-1f8d0b5a3bacff15ff3b1582bcd6f7476935c855.tar.gz
openbsd-1f8d0b5a3bacff15ff3b1582bcd6f7476935c855.tar.bz2
openbsd-1f8d0b5a3bacff15ff3b1582bcd6f7476935c855.zip
explain better how to make exportable bins
-rw-r--r--src/lib/libc/crypt/crypt.316
1 files changed, 11 insertions, 5 deletions
diff --git a/src/lib/libc/crypt/crypt.3 b/src/lib/libc/crypt/crypt.3
index 794431c809..f58c09963a 100644
--- a/src/lib/libc/crypt/crypt.3
+++ b/src/lib/libc/crypt/crypt.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: crypt.3,v 1.3 1996/08/07 18:40:26 downsj Exp $ 1.\" $OpenBSD: crypt.3,v 1.4 1996/11/01 03:45:28 deraadt Exp $
2.\" 2.\"
3.\" FreeSec: libcrypt 3.\" FreeSec: libcrypt
4.\" 4.\"
@@ -61,7 +61,7 @@ function performs password encryption, based on the
61Data Encryption Standard (DES). 61Data Encryption Standard (DES).
62Additional code has been added to deter key search attempts. 62Additional code has been added to deter key search attempts.
63The first argument to 63The first argument to
64.Nm crypt 64.Fn crypt
65is a 65is a
66.Dv null Ns -terminated 66.Dv null Ns -terminated
67string, typically a user's typed password. 67string, typically a user's typed password.
@@ -231,8 +231,14 @@ first appeared in
231This library (FreeSec 1.0) was developed outside the United States of America 231This library (FreeSec 1.0) was developed outside the United States of America
232as an unencumbered replacement for the U.S.-only libcrypt encryption 232as an unencumbered replacement for the U.S.-only libcrypt encryption
233library. 233library.
234Programs linked against the crypt() interface may be exported from the U.S.A. 234Programs linked against the
235only if they use crypt() solely for authentication purposes and avoid use of 235.Fn crypt
236the other programmer interfaces listed above. 236interface may be exported from the U.S.A. only if they use
237.Fn crypt
238solely for authentication purposes and avoid use of
239the other programmer interfaces listed above. Special care has been taken
240in the library so that programs which only use the
241.Fn crypt
242interface do not pull in the other components.
237.Sh AUTHOR 243.Sh AUTHOR
238David Burren <davidb@werj.com.au> 244David Burren <davidb@werj.com.au>