generate_password | R Documentation |
Generate Password
generate_password( words = c("adjective", "noun"), collapse = "-", numbers = 0, symbols = 0, unique = FALSE, min_char = 12, max_char = 20, verbose = TRUE )
words |
Type of word in chronological order. Can be 1 of "adjective", "noun", "adverb", "verb", or "other". |
collapse |
Passed to |
numbers |
Integer of number count to be added to password. |
symbols |
Integer of symbol count to be added to password. |
unique |
Should every character within the symbol be unique? This includes the numbers and symbols that are added to the password. |
verbose |
Only applies when |
This function will throw an error if the length of words
is greater than 2
along with a collapse
value that is not ""
, but unique
is set to TRUE
.
The generated password will be in the order of 1. words, 2. numbers, and
3. symbols and cannot be altered.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.