Giter Site home page Giter Site logo

Comments (4)

richfitz avatar richfitz commented on June 19, 2024 1

The encrypt_ functions are neither undocumented nor internal and are part of the package API.

One possible way of using them would be to do:

save_enc_rds <- function(...) {
  ## The 'rlang' package provides other ways of doing this
  envir <- parent.frame()
  call <- sys.call()
  call[[1L]] <- quote(saveRDS)
  ## Following your example, with 'key' found in the global
  ## environment; I'd recommend doing something more robust here
  ## personally.
  cyphr::encrypt_(call, key, envir = envir)
}

then use as:

key <- cyphr::key_sodium(sodium::keygen())
obj <- runif(10)
path <- tempfile(fileext = ".rds")
save_enc_rds(obj, path, compress = FALSE, version = 3) # note extra args
cyphr::decrypt(readRDS(path), key)

However, much simpler would be to use cyphr::encrypt_object directly, unless you really need to pass more arguments into the serialiser.

path <- tempfile(fileext = ".rds")
cyphr::encrypt_object(obj, key, path)
cyphr::decrypt_object(path, key)

from cyphr.

bersbersbers avatar bersbersbers commented on June 19, 2024 1

Ah, I see. I was under that false impression due the similarity with Python's _single_leading_underscore. In that process, I also learned about single_trailing_underscore_, which is quite a different concept :)

So that looks very useful then, thanks!

from cyphr.

richfitz avatar richfitz commented on June 19, 2024

Use the encrypt_ version directly and construct the call yourself (e.g., using rlang's tools or substitute yourself), or by using the less "helpful" cyphr functions such as encrypt_data

from cyphr.

bersbersbers avatar bersbersbers commented on June 19, 2024

Thanks - relying on undocumented/internal functions such as encrypt_ is nothing I like to do, unfortunately.

I ended up using

save_enc_rds <- function(object, file) {
    cyphr::encrypt(saveRDS(object, file), key)
}

which is enough for my use case. I'll have to add additional arguments as needed, but that API is probably stable enough.

from cyphr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.