powered by
Convert the literal bytes of a raw (unsigned char*) to a string representation. This is different from R's rawToChar(). See examples for details.
rawToChar()
raw_as_char(raw, upper = TRUE, spaces = FALSE)
A raw vector.
Should hex digits A-F be given in uppercase?
Should the str use spaces?
A character string.
# NOT RUN { library(argon2) str <- "some text" raw <- charToRaw(str) raw rawToChar(raw) raw_as_char(raw) # } # NOT RUN { # }
Run the code above in your browser using DataLab