R/crypt.R

Defines functions crypt

Documented in crypt

crypt <-
function(passwords, salt = "D8")
{
  .Call("R_crypt", as.character(passwords), rep(as.character(salt), length = length(passwords)), PACKAGE = "Rcrypt")
}
omegahat/Rcrypt documentation built on May 24, 2019, 1:55 p.m.