diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:33:12 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:33:12 +0000 |
commit | 36082a2fe36ecd800d784ae44c14f1f18c66a7e9 (patch) | |
tree | 6c68e0c0097987aff85a01dabddd34b862309a7c /doc/functions/gnutls_pbkdf2 | |
parent | Initial commit. (diff) | |
download | gnutls28-36082a2fe36ecd800d784ae44c14f1f18c66a7e9.tar.xz gnutls28-36082a2fe36ecd800d784ae44c14f1f18c66a7e9.zip |
Adding upstream version 3.7.9.upstream/3.7.9upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/functions/gnutls_pbkdf2')
-rw-r--r-- | doc/functions/gnutls_pbkdf2 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/functions/gnutls_pbkdf2 b/doc/functions/gnutls_pbkdf2 new file mode 100644 index 0000000..69e0d3e --- /dev/null +++ b/doc/functions/gnutls_pbkdf2 @@ -0,0 +1,24 @@ + + + + +@deftypefun {int} {gnutls_pbkdf2} (gnutls_mac_algorithm_t @var{mac}, const gnutls_datum_t * @var{key}, const gnutls_datum_t * @var{salt}, unsigned @var{iter_count}, void * @var{output}, size_t @var{length}) +@var{mac}: the mac algorithm used internally + +@var{key}: the initial keying material + +@var{salt}: the salt + +@var{iter_count}: the iteration count + +@var{output}: the output value + +@var{length}: the desired length of the output key + +This function will derive a variable length keying material from +a password according to PKCS @code{5} PBKDF2. + +@strong{Returns:} Zero or a negative error code on error. + +@strong{Since:} 3.6.13 +@end deftypefun |