password: Random Password Generation

Description Usage Arguments Details Value Author(s) Examples

Description

Create random passwords consisting of letters, numbers and punctuation characters.

Usage

1
2
password(n = 8, numbers = TRUE, case = TRUE,
         special = c("?", "!", "&", "%", "$"))

Arguments

n

integer: length (in the sense of nchar) of password

numbers

logical: include numbers 0 to 9?

case

logical: use upper and lower case letters?

special

a character vector of punctuation characters, or FALSE.

Details

Creates a random combination of characters, using the function sample.

Value

A character vector of length one.

Author(s)

Enrico Schumann

Examples

1
2
password(8)
password(10, numbers = FALSE,  special = "/")

password documentation built on May 2, 2019, 3:43 p.m.

Related to password in password...