Github: https://github.com/randy3k/otp
Documentation: https://randy3k.github.io/otp
Generating and validating One-time Password based on Hash-based Message Authentication Code (HOTP) and Time Based One-time Password (TOTP) according to RFC 4226 https://tools.ietf.org/html/rfc4226 and RFC 6238 https://tools.ietf.org/html/rfc6238.
You can install the released version of otp from CRAN with:
install.packages("otp")
And the development version from GitHub with:
# install.packages("devtools") devtools::install_github("randy3k/otp")
library(otp)
p <- HOTP$new("JBSWY3DPEHPK3PXP") p$at(8) #> [1] "964230" p$verify("964230", 8) #> [1] 8
p <- TOTP$new("JBSWY3DPEHPK3PXP") (code <- p$now()) #> [1] "938381" p$verify(code) #> [1] "2020-05-06 13:35:00 PDT"
raster::image( qrencoder::qrencode_raster(p$provisioning_uri("otp")), asp = 1, col = c("white", "black"), axes = FALSE, xlab = "", ylab = "" )
