File: pbkdf.Rd

package info (click to toggle)
r-cran-openssl 2.0.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,312 kB
  • sloc: ansic: 3,074; sh: 20; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 677 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/bcrypt.R
\name{bcrypt_pbkdf}
\alias{bcrypt_pbkdf}
\title{Bcrypt PWKDF}
\usage{
bcrypt_pbkdf(password, salt, rounds = 16L, size = 32L)
}
\arguments{
\item{password}{string or raw vector with password}

\item{salt}{raw vector with (usually 16) bytes}

\item{rounds}{number of hashing rounds}

\item{size}{desired length of the output key}
}
\description{
Password based key derivation function with bcrypt. This is not
part of openssl. It is needed to parse private key files which are
encoded in the \href{https://cvsweb.openbsd.org/src/usr.bin/ssh/PROTOCOL.key?annotate=HEAD}{new openssh format}.
}