Nothing
#' Bcrypt PWKDF
#'
#' Password based key derivation function with bcrypt.
#'
#' @export
#' @rdname pbkdf
#' @useDynLib bcrypt R_bcrypt_pbkdf
#' @param password string or raw vector with password
#' @param salt raw vector with (usually 16) bytes
#' @param rounds number of hashing rounds
#' @param size desired length of the output key
pbkdf <- function(password, salt, rounds = 16L, size = 32L){
if(is.character(password))
password <- charToRaw(password)
stopifnot(is.raw(password))
stopifnot(is.raw(salt))
stopifnot(is.integer(rounds))
stopifnot(is.integer(size))
.Call(R_bcrypt_pbkdf, password, salt, rounds, size)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.