I am trying to take a look at how the rawToHex() function is implemented in PKI package.
I tried this:
> library(PKI)
Loading required package: base64enc
> PKI::rawToHex
Error: 'rawToHex' is not an exported object from 'namespace:PKI'
> PKI:::rawToHex
Error in get(name, envir = asNamespace(pkg), inherits = FALSE) :
object 'rawToHex' not found
I am basically trying to understand how to convert raw data to Hex representation in R. So I wanted to take a look at this.