summaryrefslogtreecommitdiffstats
path: root/doc/man7/EVP_KDF-SCRYPT.pod
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-10-04 12:46:33 +0100
committerMatt Caswell <matt@openssl.org>2019-11-21 15:49:58 +0000
commite44192d14b0557538611de4018170d702c9709d7 (patch)
tree5d17a6f56886ea6548bdd4504868dd9a0cbd5ff1 /doc/man7/EVP_KDF-SCRYPT.pod
parentcc35c3ed8ffdc07bb53a2908b8a186fd866ac8d5 (diff)
Documentation updates due to naming tweaks
Also documents our new canonical naming. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/10092)
Diffstat (limited to 'doc/man7/EVP_KDF-SCRYPT.pod')
-rw-r--r--doc/man7/EVP_KDF-SCRYPT.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man7/EVP_KDF-SCRYPT.pod b/doc/man7/EVP_KDF-SCRYPT.pod
index 570f60e2f3..1459d07cfa 100644
--- a/doc/man7/EVP_KDF-SCRYPT.pod
+++ b/doc/man7/EVP_KDF-SCRYPT.pod
@@ -34,7 +34,7 @@ may be used by scrypt defaults to 1025 MiB.
=head2 Identity
-"ID-SCRYPT" is the name for this implementation; it
+"SCRYPT" is the name for this implementation; it
can be used with the EVP_KDF_fetch() function.
=head2 Supported parameters
@@ -65,7 +65,7 @@ Both r and p are parameters of type B<uint32_t>.
A context for scrypt can be obtained by calling:
- EVP_KDF *kdf = EVP_KDF_fetch(NULL, "ID-SCRYPT", NULL);
+ EVP_KDF *kdf = EVP_KDF_fetch(NULL, "SCRYPT", NULL);
EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
The output length of an scrypt key derivation is specified via the
@@ -81,7 +81,7 @@ This example derives a 64-byte long test vector using scrypt with the password
unsigned char out[64];
OSSL_PARAM params[6], *p = params;
- kdf = EVP_KDF_fetch(NULL, "ID-SCRYPT", NULL);
+ kdf = EVP_KDF_fetch(NULL, "SCRYPT", NULL);
kctx = EVP_KDF_CTX_new(kdf);
EVP_KDF_free(kdf);