diff options
author | deraadt <> | 1996-11-01 03:45:28 +0000 |
---|---|---|
committer | deraadt <> | 1996-11-01 03:45:28 +0000 |
commit | 1f8d0b5a3bacff15ff3b1582bcd6f7476935c855 (patch) | |
tree | 67df3052219a4b088eac589d25c46d9b6a9a1ea6 | |
parent | 05732d13c524f1acfe6b0dde681f0c8e134ed405 (diff) | |
download | openbsd-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.3 | 16 |
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 | |||
61 | Data Encryption Standard (DES). | 61 | Data Encryption Standard (DES). |
62 | Additional code has been added to deter key search attempts. | 62 | Additional code has been added to deter key search attempts. |
63 | The first argument to | 63 | The first argument to |
64 | .Nm crypt | 64 | .Fn crypt |
65 | is a | 65 | is a |
66 | .Dv null Ns -terminated | 66 | .Dv null Ns -terminated |
67 | string, typically a user's typed password. | 67 | string, typically a user's typed password. |
@@ -231,8 +231,14 @@ first appeared in | |||
231 | This library (FreeSec 1.0) was developed outside the United States of America | 231 | This library (FreeSec 1.0) was developed outside the United States of America |
232 | as an unencumbered replacement for the U.S.-only libcrypt encryption | 232 | as an unencumbered replacement for the U.S.-only libcrypt encryption |
233 | library. | 233 | library. |
234 | Programs linked against the crypt() interface may be exported from the U.S.A. | 234 | Programs linked against the |
235 | only if they use crypt() solely for authentication purposes and avoid use of | 235 | .Fn crypt |
236 | the other programmer interfaces listed above. | 236 | interface may be exported from the U.S.A. only if they use |
237 | .Fn crypt | ||
238 | solely for authentication purposes and avoid use of | ||
239 | the other programmer interfaces listed above. Special care has been taken | ||
240 | in the library so that programs which only use the | ||
241 | .Fn crypt | ||
242 | interface do not pull in the other components. | ||
237 | .Sh AUTHOR | 243 | .Sh AUTHOR |
238 | David Burren <davidb@werj.com.au> | 244 | David Burren <davidb@werj.com.au> |