Multiple password generator in R.
This is not secure in the sense of encryption secure and it has lots of limitations. In fact there is nothing encrypted. It just generates a long random number sequence based on how you start it out. If you always start it the same way, it will always generate the same sequence.
Because random sequences generated by a computer are not actually random and can be perfectly duplicated by setting the seed to the same value each time, you can re-generate a password by using a master password to set the seed. So essentially this code generates a big vector of different characters and then parses it up into passwords. The vector can be duplicated over and over by making the seed the master password. This is vulnerable by the fact that they way that R generates random numbers could be changed in release or just in a function in which case the old seed value may no longer generate the same random sequence of numbers.
You need to have R installed on your computer to use it. Rstudio is a good ide but it is not necessary to install it for this package.
Install by
install.packages("devtools")
library(devtools)
install_github("duplisea/passwrd")
master.password=29852758
passwords(master.password, sites=c("Work","Bank","Investment","gmail.com","yahoo.com","hotmail.com","visa","spotify"), changes=c(1,1,1,1,1,1,2,1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.