summaryrefslogtreecommitdiffstats
path: root/doc/man7/EVP_KDF-SCRYPT.pod
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-09-25 20:27:27 +1000
committerPauli <paul.dale@oracle.com>2019-09-26 07:10:41 +1000
commite7f2dac96826d7988467e6293156fcb12277a040 (patch)
treee0b83d80f80e40afeb243f2adb8dfa93e2e15d81 /doc/man7/EVP_KDF-SCRYPT.pod
parent19bd1fa1ef17ff0ac071402cb6b002f1c29e37b9 (diff)
Use OSSL_PARAM types for KDF documentation
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10011)
Diffstat (limited to 'doc/man7/EVP_KDF-SCRYPT.pod')
-rw-r--r--doc/man7/EVP_KDF-SCRYPT.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man7/EVP_KDF-SCRYPT.pod b/doc/man7/EVP_KDF-SCRYPT.pod
index 706237f6f2..1372f6d677 100644
--- a/doc/man7/EVP_KDF-SCRYPT.pod
+++ b/doc/man7/EVP_KDF-SCRYPT.pod
@@ -49,15 +49,15 @@ The supported parameters are:
These parameters work as described in L<EVP_KDF(3)/PARAMETERS>.
-=item B<OSSL_KDF_PARAM_SCRYPT_N> ("n") <int>
+=item B<OSSL_KDF_PARAM_SCRYPT_N> ("n") <unsigned integer>
-=item B<OSSL_KDF_PARAM_SCRYPT_R> ("r") <int>
+=item B<OSSL_KDF_PARAM_SCRYPT_R> ("r") <unsigned integer>
-=item B<OSSL_KDF_PARAM_SCRYPT_P> ("p") <int>
+=item B<OSSL_KDF_PARAM_SCRYPT_P> ("p") <unsigned integer>
These parameters configure the scrypt work factors N, r and p.
-N is a parameter of type uint64_t.
-Both r and p are parameters of type uint32_t.
+N is a parameter of type B<uint64_t>.
+Both r and p are parameters of type B<uint32_t>.
=back