R/print.cipher.R

Defines functions print.cipher

#' @title print.cipher
#'
#' @description internal function with print definitions for custom cipher class
#'
#' @param x previous object
#' @param ... other arguments
#' 
#' @noRd
#' 


print.cipher <- function(x,...) {
  print.default(x$encrypted, ...)
}

Try the ciphertext package in your browser

Any scripts or data that you put into this service are public.

ciphertext documentation built on April 4, 2025, 12:17 a.m.