File: init.R

package info (click to toggle)
r-cran-openssl 2.0.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,312 kB
  • sloc: ansic: 3,074; sh: 20; makefile: 5
file content (7 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
.onAttach <- function(libname, pkg){
  conf <- openssl_config()
  version <- conf$version
  if(isTRUE(conf$fips))
    version <- paste(version, "(FIPS)")
  packageStartupMessage(paste("Linking to:", version))
}