Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Password generator function in R

I am looking for a smart way to code a password generator function in R:

generate.password (length, capitals, numbers)
  • length: the length of the password
  • capitals: a vector of defining where capitals shall occur, vector reflects the corresponsing password string position, default should be no capitals
  • numbers: a vector defining where capitals shall occur, vector reflects the corresponsing password string position, default should be no numbers

Examples:

generate.password(8)
[1] "hqbfpozr"


generate.password(length=8, capitals=c(2,4))
[1] "hYbFpozr"


generate.password(length=8, capitals=c(2,4), numbers=c(7:8))
[1] "hYbFpo49"
like image 278
user2030503 Avatar asked Sep 14 '13 09:09

user2030503


3 Answers

I liked the solution given by @Hadd E. Nuff... and What I did, is the inclusion of digits between 0 and 9, at random... here is the modified solution...

generate.password <- function(LENGTH){
punct <- c("!",  "#", "$", "%", "&", "(", ")", "*",  "+", "-", "/", ":", 
         ";", "<", "=", ">", "?", "@", "[", "^", "_", "{", "|", "}", "~")
nums <- c(0:9)
chars <- c(letters, LETTERS, punct, nums)
p <- c(rep(0.0105, 52), rep(0.0102, 25), rep(0.02, 10))
pword <- paste0(sample(chars, LENGTH, TRUE, prob = p), collapse = "")
return(pword)
}

generate.password(8)

This will generate very strong passwords like:

"C2~mD20U"         # 8 alpha-numeric-specialchar

"+J5Gi3"           # 6 alpha-numeric-specialchar

"77{h6RsGQJ66if5"  # 15 alpha-numeric-specialchar
like image 53
Manoj Kumar Avatar answered Oct 30 '22 14:10

Manoj Kumar


There is function which generates random strings in the stringi (version >= 0.2-3) package:

require(stringi)
stri_rand_strings(n=2, length=8, pattern="[A-Za-z0-9]")
## [1] "90i6RdzU" "UAkSVCEa"

So using different patterns you can generate parts for your desired password and then paste it like this:

x <- stri_rand_strings(n=4, length=c(2,1,2,3), pattern=c("[a-z]","[A-Z]","[0-9]","[a-z]"))
x
## [1] "ex"  "N"   "81"  "tsy"
stri_flatten(x)
## [1] "exN81tsy"
like image 39
bartektartanus Avatar answered Oct 30 '22 14:10

bartektartanus


Here's one approach

generate.password <- function(length,
                              capitals = integer(0),
                              numbers  = integer(0)) {

   stopifnot(is.numeric(length),   length   > 0L,
             is.numeric(capitals), capitals > 0L, capitals <= length,
             is.numeric(numbers),  numbers  > 0L, numbers  <= length,
             length(intersect(capitals, numbers)) == 0L)

   lc  <- sample(letters, length,           replace = TRUE)
   uc  <- sample(LETTERS, length(capitals), replace = TRUE)
   num <- sample(0:9,     length(numbers),  replace = TRUE)

   pass <- lc
   pass[capitals] <- uc
   pass[numbers]  <- num

   paste0(pass, collapse = "")
}


## Examples
set.seed(1)
generate.password(8)
# [1] "gjoxfxyr"

set.seed(1)
generate.password(length=8, capitals=c(2,4))
# [1] "gQoBfxyr"

set.seed(1)
generate.password(length=8, capitals=c(2,4), numbers=c(7:8))
# [1] "gQoBfx21"

You can also add other special characters in the same fashion. If you want repeated values for letters and numbers, then add replace =TRUE in sample function.

like image 11
Jilber Urbina Avatar answered Oct 30 '22 13:10

Jilber Urbina