Skip to content

Commit

Permalink
doc/crypt.3: Fix variable name for datamember in 'struct crypt_data'.
Browse files Browse the repository at this point in the history
Fixes #153.
  • Loading branch information
besser82 committed Nov 1, 2022
1 parent edd2adb commit b212d60
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/crypt.3
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ It has at least these fields:
struct crypt_data {
char output[CRYPT_OUTPUT_SIZE];
char setting[CRYPT_OUTPUT_SIZE];
char phrase[CRYPT_MAX_PASSPHRASE_SIZE];
char input[CRYPT_MAX_PASSPHRASE_SIZE];
char initialized;
};
.Ed
Expand All @@ -100,11 +100,11 @@ Upon a successful return from
the hashed passphrase will be stored in
.Fa output .
Applications are encouraged, but not required, to use the
.Fa phrase
.Fa input
and
.Fa setting
fields to store the strings that they will pass as
.Fa phrase
.Fa input phrase
and
.Fa setting
to
Expand All @@ -126,7 +126,7 @@ before the first use.
(Of course, do this before storing anything in
.Fa setting
and
.Fa phrase . )
.Fa input . )
.Pp
The
.Fa data
Expand All @@ -143,7 +143,7 @@ When used with
the entire
.Fa data
object (except for the
.Fa phrase
.Fa input
and
.Fa setting
fields) must be zeroed before its first use;
Expand Down

0 comments on commit b212d60

Please sign in to comment.