1% Generated by roxygen2: do not edit by hand 2% Please edit documentation in R/base64.R 3\name{base64} 4\alias{base64} 5\alias{base64_dec} 6\alias{base64_enc} 7\title{Encode/decode base64} 8\usage{ 9base64_dec(input) 10 11base64_enc(input) 12} 13\arguments{ 14\item{input}{string or raw vector to be encoded/decoded} 15} 16\description{ 17Simple in-memory base64 encoder and decoder. Used internally for converting 18raw vectors to text. Interchangeable with encoder from \code{base64enc} or 19\code{openssl} package. 20} 21\examples{ 22str <- base64_enc(serialize(iris, NULL)) 23out <- unserialize(base64_dec(str)) 24stopifnot(identical(out, iris)) 25} 26