R/crypt.R

Defines functions PKI.decrypt PKI.encrypt

Documented in PKI.decrypt PKI.encrypt

PKI.encrypt <- function(what, key, cipher = NULL, iv = NULL) .Call(PKI_encrypt, what, key, cipher, iv)

PKI.decrypt <- function(what, key, cipher = NULL, iv = NULL) .Call(PKI_decrypt, what, key, cipher, iv)
s-u/PKI documentation built on Feb. 12, 2024, 10:43 p.m.